mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
28 lines
532 B
TypeScript
28 lines
532 B
TypeScript
import { $t } from "/@/plugins/i18n";
|
|
const Layout = () => import("/@/layout/index.vue");
|
|
|
|
const aboutRouter = {
|
|
path: "/about",
|
|
component: Layout,
|
|
redirect: "/about/index",
|
|
meta: {
|
|
icon: "question-line",
|
|
title: $t("menus.hsAbout"),
|
|
i18n: true,
|
|
rank: 14
|
|
},
|
|
children: [
|
|
{
|
|
path: "/about/index",
|
|
name: "reAbout",
|
|
component: () => import("/@/views/about/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsAbout"),
|
|
i18n: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default aboutRouter;
|