mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 22:20:27 +08:00
23 lines
356 B
JavaScript
23 lines
356 B
JavaScript
export default [
|
|
{
|
|
path: '/403',
|
|
component: () => import("./error-page/403")
|
|
},
|
|
{
|
|
path: '/404',
|
|
component: () => import("./error-page/404")
|
|
},
|
|
{
|
|
path: '/500',
|
|
component: () => import("./error-page/500")
|
|
},
|
|
{
|
|
path: '/502',
|
|
component: () => import("./error-page/502")
|
|
},
|
|
{
|
|
path: '/login',
|
|
component: () => import("./login")
|
|
}
|
|
]
|