route.js
998 Bytes
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
44
45
46
47
48
49
50
/*
* @Date: 2023-09-01 10:29:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-12 13:20:45
* @FilePath: /data-table/src/route.js
* @Description: 文件描述
*/
export default [{
path: '/',
component: () => import('@/views/index.vue'),
meta: {
title: '首页',
}
}, {
path: '/success',
component: () => import('@/views/success.vue'),
meta: {
title: '提交成功',
}
}, {
path: '/stop',
component: () => import('@/views/stop.vue'),
meta: {
title: '表单状态',
}
}, {
path: '/auth',
component: () => import('@/views/auth.vue'),
meta: {
title: '授权页面',
}
}, {
path: '/no_auth',
component: () => import('@/views/no_auth.vue'),
meta: {
title: '未授权页面',
}
}, {
path: '/cycle-selection',
component: () => import('@/views/cycle-selection.vue'),
meta: {
title: '选择周期',
}
}, {
path: '/test',
component: () => import('@/views/test.vue'),
meta: {
title: 'test',
}
}];