mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
24 lines
422 B
TypeScript
24 lines
422 B
TypeScript
const Layout = () => import("@/layout/index.vue");
|
|
|
|
export default {
|
|
path: "/",
|
|
name: "Home",
|
|
component: Layout,
|
|
redirect: "/welcome",
|
|
meta: {
|
|
icon: "homeFilled",
|
|
title: "首页",
|
|
rank: 0
|
|
},
|
|
children: [
|
|
{
|
|
path: "/welcome",
|
|
name: "Welcome",
|
|
component: () => import("@/views/welcome/index.vue"),
|
|
meta: {
|
|
title: "首页"
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|