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
42
43
| import Index from '@/layout/index.vue'
| import Store from '@/store/'
| import Layout from '@/page/index/layout.vue'
|
| export default [
| {
| path: '/',
| component: () => import('@/layout/index.vue'),
| redirect: '/index',
| children: [
| {
| path: 'index',
| name: '首页',
| meta: {
| i18n: 'dashboard',
| },
| component: () => import(/* webpackChunkName: "home" */ '@/views/Home/Home.vue'),
| },
| {
| path: 'taskManage',
| name: '任务管理',
| meta: {
| i18n: 'dashboard',
| menu: false,
| },
| component: () =>
| import(/* webpackChunkName: "TaskManage" */ '@/views/TaskManage/TaskManage.vue'),
| },
| ],
| },
| {
| path: '/info',
| component: () => import('@/layout/index.vue'),
| redirect: '/info/index',
| children: [
| {
| path: 'index',
| name: '个人信息',
| component: () => import('@/views/System/Userinfo.vue'),
| },
| ],
| },
| ]
|
|