mirror of
https://github.com/certd/certd.git
synced 2026-05-14 20:17:32 +08:00
23 lines
550 B
TypeScript
23 lines
550 B
TypeScript
|
|
import LayoutOutside from "/src/layout/layout-outside.vue";
|
||
|
|
import Error404 from "/src/views/framework/error/404.vue";
|
||
|
|
const errorPage = [{ path: "/:pathMatch(.*)*", name: "not-found", component: Error404 }];
|
||
|
|
export const outsideResource = [
|
||
|
|
{
|
||
|
|
title: "outside",
|
||
|
|
name: "outside",
|
||
|
|
path: "/outside",
|
||
|
|
component: LayoutOutside,
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
meta: {
|
||
|
|
title: "登录"
|
||
|
|
},
|
||
|
|
name: "login",
|
||
|
|
path: "/login",
|
||
|
|
component: "/framework/login/index.vue"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
...errorPage
|
||
|
|
];
|