mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +08:00
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { flowchart } from "@/router/enums";
|
|
|
|
export default {
|
|
path: "/flowChart",
|
|
redirect: "/flowChart/index",
|
|
meta: {
|
|
icon: "setUp",
|
|
title: $t("menus.hsflowChart"),
|
|
rank: flowchart
|
|
},
|
|
children: [
|
|
{
|
|
path: "/flowChart/index",
|
|
name: "FlowChart",
|
|
component: () => import("@/views/flow-chart/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsflowChart")
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|