forked from AkkomaGang/admin-fe
41 lines
765 B
JavaScript
41 lines
765 B
JavaScript
|
import Layout from '@/views/layout/Layout'
|
||
|
|
||
|
export const constantRouterMap = [
|
||
|
{
|
||
|
path: '/redirect',
|
||
|
component: Layout,
|
||
|
hidden: true,
|
||
|
children: [
|
||
|
{
|
||
|
path: '/redirect/:path*',
|
||
|
component: () => import('@/views/redirect/index')
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
path: '/login',
|
||
|
component: () => import('@/views/login/index'),
|
||
|
hidden: true
|
||
|
},
|
||
|
{
|
||
|
path: '/auth-redirect',
|
||
|
component: () => import('@/views/login/authredirect'),
|
||
|
hidden: true
|
||
|
},
|
||
|
{
|
||
|
path: '/404',
|
||
|
component: () => import('@/views/errorPage/404'),
|
||
|
hidden: true
|
||
|
},
|
||
|
{
|
||
|
path: '/401',
|
||
|
component: () => import('@/views/errorPage/401'),
|
||
|
hidden: true
|
||
|
},
|
||
|
{
|
||
|
path: '',
|
||
|
component: Layout,
|
||
|
redirect: '/users/index'
|
||
|
}
|
||
|
]
|