index.js
721 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
import Vue from 'vue'
import VueRouter from 'vue-router'
import Layout from '@/layout/';
import portalRouter from './modules/portal'
Vue.use(VueRouter)
export const constantRoutes = [
{
path: '/',
component: Layout,
hidden: true,
children: [
{
path: '/redirect/:path(.*)',
component: () => import(/* webpackChunkName: "redirect" */ '@/views/redirect/index'),
}
]
},
{
path: '/login',
component: () => import(/* webpackChunkName: "login" */ '@/views/login/index'),
hidden: true
},
]
export const asyncRoutes = [
portalRouter
]
const routes = [].concat(constantRoutes, asyncRoutes)
const router = new VueRouter({
routes
})
export default router