1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| import Layout from '@/layout'
|
| const customRouter = {
| path: '/vehicle',
| component: Layout,
| redirect: '/vehicle/index',
| name: 'Vehicle',
| alwaysShow: true,
| meta: {
| title: '',
| icon: 'clipboard'
| },
| children: [
| {
| path: 'registration',
| component: () => import('@/views/vehicle/registration/index'),
| name: 'registration ',
| meta: { title: '车辆信息登记' }
| },
| {
| path: 'queuing',
| component: () => import('@/views/vehicle/queuing/index'),
| name: 'queuing',
| meta: { title: '排队叫号' }
| },
| {
| path: 'systemLog',
| component: () => import('@/views/systemLog/index'),
| name: 'systemLog',
| meta: { title: '系统日志' }
| },
| ]
| }
|
| export default customRouter
|
|