flowchart.ts 479 B

12345678910111213141516171819202122
  1. import { $t } from "@/plugins/i18n";
  2. import { flowchart } from "@/router/enums";
  3. export default {
  4. path: "/flowChart",
  5. redirect: "/flowChart/index",
  6. meta: {
  7. icon: "set-up",
  8. title: $t("menus.hsflowChart"),
  9. rank: flowchart
  10. },
  11. children: [
  12. {
  13. path: "/flowChart/index",
  14. name: "FlowChart",
  15. component: () => import("@/views/flow-chart/index.vue"),
  16. meta: {
  17. title: $t("menus.hsflowChart")
  18. }
  19. }
  20. ]
  21. } as RouteConfigsTable;