Files
pure-admin-thin/src/router/modules/home.ts
2022-11-30 16:33:46 +08:00

25 lines
476 B
TypeScript

const Layout = () => import("@/layout/index.vue");
import HomeFilled from "@iconify-icons/ep/home-filled";
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;