mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
27 lines
567 B
TypeScript
27 lines
567 B
TypeScript
import { $t } from "/@/plugins/i18n";
|
|
import type { RouteConfigsTable } from "/#/index";
|
|
const Layout = () => import("/@/layout/index.vue");
|
|
|
|
const aboutRouter: RouteConfigsTable = {
|
|
path: "/about",
|
|
component: Layout,
|
|
redirect: "/about/index",
|
|
meta: {
|
|
// icon: "question-line",
|
|
title: $t("menus.hsAbout"),
|
|
rank: 15
|
|
},
|
|
children: [
|
|
{
|
|
path: "/about/index",
|
|
name: "About",
|
|
component: () => import("/@/views/about/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsAbout")
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default aboutRouter;
|