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;