Files
vue-pure-admin/src/router/modules/flowchart.ts
2022-01-21 16:10:10 +08:00

31 lines
614 B
TypeScript

import { $t } from "/@/plugins/i18n";
import Layout from "/@/layout/index.vue";
const flowChartRouter = {
path: "/flowChart",
name: "flowChart",
component: Layout,
redirect: "/flowChart/index",
meta: {
icon: "set-up",
title: $t("menus.hsflowChart"),
showLink: true,
i18n: true,
rank: 1
},
children: [
{
path: "/flowChart/index",
name: "flowChart",
component: () => import("/@/views/flow-chart/index.vue"),
meta: {
title: $t("menus.hsflowChart"),
i18n: true,
showLink: true
}
}
]
};
export default flowChartRouter;