mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
35 lines
578 B
TypeScript
35 lines
578 B
TypeScript
import Layout from '@/layout/index'
|
|
import childrenRoutes from './route-module'
|
|
|
|
const {
|
|
rootRoute: { path },
|
|
} = __APP_CFG__
|
|
|
|
export const constantRoutes = [
|
|
{
|
|
path: '/',
|
|
name: 'login',
|
|
component: () => import('@/views/login/index'),
|
|
},
|
|
{
|
|
path: '/',
|
|
name: 'layout',
|
|
redirect: path,
|
|
component: Layout,
|
|
children: childrenRoutes,
|
|
},
|
|
{
|
|
/** 错误页面(404) */
|
|
path: '/:catchAll(.*)',
|
|
name: 'error-page',
|
|
component: Layout,
|
|
redirect: '/error',
|
|
},
|
|
]
|
|
|
|
/**
|
|
*
|
|
* 主路由表配置
|
|
* 例如: `login` `layout` 等
|
|
*/
|