bunny-admin-element-thin/src/router/modules/remaining.ts

32 lines
647 B
TypeScript
Raw Normal View History

import { $t } from "@/plugins/i18n";
const Layout = () => import("@/layout/index.vue");
2024-05-11 14:48:02 +08:00
export default [
{
path: "/login",
name: "Login",
component: () => import("@/views/login/index.vue"),
meta: {
title: $t("menus.pureLogin"),
showLink: false,
rank: 101
}
},
{
path: "/redirect",
component: Layout,
meta: {
title: $t("status.pureLoad"),
showLink: false,
rank: 102
},
children: [
{
path: "/redirect/:path(.*)",
name: "Redirect",
component: () => import("@/layout/redirect.vue")
}
]
}
2024-05-11 14:48:02 +08:00
] satisfies Array<RouteConfigsTable>;