mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
25 lines
520 B
TypeScript
25 lines
520 B
TypeScript
import { $t } from "/@/plugins/i18n";
|
|
import type { RouteConfigsTable } from "/#/index";
|
|
|
|
const flowChartRouter: RouteConfigsTable = {
|
|
path: "/flowChart",
|
|
redirect: "/flowChart/index",
|
|
meta: {
|
|
icon: "set-up",
|
|
title: $t("menus.hsflowChart"),
|
|
rank: 1
|
|
},
|
|
children: [
|
|
{
|
|
path: "/flowChart/index",
|
|
name: "FlowChart",
|
|
component: () => import("/@/views/flow-chart/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsflowChart")
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default flowChartRouter;
|