2022-08-19 15:03:52 +08:00

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;