mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-03-17 19:23:28 +00:00
23 lines
357 B
JavaScript
23 lines
357 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")
|
|
}
|
|
];
|