2022-03-02 20:47:14 +08:00

33 lines
631 B
TypeScript

import { $t } from "/@/plugins/i18n";
const Layout = () => import("/@/layout/index.vue");
const aboutRouter = {
path: "/about",
name: "reAbout",
component: Layout,
redirect: "/about",
meta: {
icon: "question-line",
title: $t("menus.hsAbout"),
i18n: true,
rank: 12
},
children: [
{
path: "/about",
name: "reAbout",
component: () => import("/@/views/about.vue"),
meta: {
title: $t("menus.hsAbout"),
i18n: true
// extraIcon: {
// svg: true,
// name: "team-iconxinpin"
// }
}
}
]
};
export default aboutRouter;