Files
simple-todo/frontend/web/src/router/modules/home.ts
T
2026-05-26 11:54:24 +08:00

17 lines
328 B
TypeScript

import { DEFAULT_ENTRY_PATH } from "@/router/defaultEntry";
const Layout = () => import("@/layout/index.vue");
export default {
path: "/",
name: "Home",
component: Layout,
redirect: DEFAULT_ENTRY_PATH,
meta: {
icon: "homeFilled",
title: "首页",
showLink: false,
rank: 0
}
} as RouteConfigsTable;