24 lines
517 B
TypeScript
24 lines
517 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { flowchart } from "@/router/enums";
|
|
|
|
export default {
|
|
path: "/flow-chart",
|
|
redirect: "/flow-chart/index",
|
|
meta: {
|
|
icon: "ep:set-up",
|
|
title: $t("menus.pureFlowChart"),
|
|
rank: flowchart,
|
|
showLink: false
|
|
},
|
|
children: [
|
|
{
|
|
path: "/flow-chart/index",
|
|
name: "FlowChart",
|
|
component: () => import("@/views/flow-chart/index.vue"),
|
|
meta: {
|
|
title: $t("menus.pureFlowChart")
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|