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
36
37
38
39
40
41
| /** When your routing table is too long, you can split it into small modules **/
|
| const Layout = () => import('@/layout/index.vue');
|
| const tableRouter = {
| path: '/table',
| component: Layout,
| redirect: '/table/complex-table',
| name: 'Table',
| meta: {
| title: 'Table表格',
| icon: 'table'
| },
| children: [
| {
| path: 'dynamic-table',
| component: () => import('@/views/table/dynamic-table/index.vue'),
| name: 'DynamicTable',
| meta: { title: '动态 Table' }
| },
| {
| path: 'drag-table',
| component: () => import('@/views/table/drag-table.vue'),
| name: 'DragTable',
| meta: { title: '拖拽 Table' }
| },
| {
| path: 'inline-edit-table',
| component: () => import('@/views/table/inline-edit-table.vue'),
| name: 'InlineEditTable',
| meta: { title: '行内编辑' }
| },
| {
| path: 'complex-table',
| component: () => import('@/views/table/complex-table.vue'),
| name: 'ComplexTable',
| meta: { title: '综合 Table' }
| }
| ]
| };
| export default tableRouter;
|
|