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
51
52
53
54
55
56
57
58
59
60
61
| const staticRoutes = [
| // 不需要登录就能访问的路由示例
| // {
| // path: '/welcome',
| // name: 'WelcomeStatic',
| // component: () => import('@views/dashboard/console/index.vue'),
| // meta: { title: 'menus.dashboard.title' }
| // },
| {
| path: '/auth/login',
| name: 'Login',
| component: () => import('@views/auth/login/index.vue'),
| meta: { title: 'menus.login.title', isHideTab: true }
| },
| {
| path: '/auth/register',
| name: 'Register',
| component: () => import('@views/auth/register/index.vue'),
| meta: { title: 'menus.register.title', isHideTab: true }
| },
| {
| path: '/auth/forget-password',
| name: 'ForgetPassword',
| component: () => import('@views/auth/forget-password/index.vue'),
| meta: { title: 'menus.forgetPassword.title', isHideTab: true }
| },
| {
| path: '/403',
| name: 'Exception403',
| component: () => import('@views/exception/403/index.vue'),
| meta: { title: '403', isHideTab: true }
| },
| {
| path: '/:pathMatch(.*)*',
| name: 'Exception404',
| component: () => import('@views/exception/404/index.vue'),
| meta: { title: '404', isHideTab: true }
| },
| {
| path: '/500',
| name: 'Exception500',
| component: () => import('@views/exception/500/index.vue'),
| meta: { title: '500', isHideTab: true }
| },
| {
| path: '/outside',
| component: () => import('@views/index/index.vue'),
| name: 'Outside',
| meta: { title: 'menus.outside.title' },
| children: [
| // iframe 内嵌页面
| {
| path: '/outside/iframe/:path',
| name: 'Iframe',
| component: () => import('@/views/outside/Iframe.vue'),
| meta: { title: 'iframe' }
| }
| ]
| }
| ]
| export { staticRoutes }
|
|