formdesign.ts 625 B

12345678910111213141516171819202122232425
  1. import { $t } from "@/plugins/i18n";
  2. import { formdesign } from "@/router/enums";
  3. const IFrame = () => import("@/layout/frameView.vue");
  4. export default {
  5. path: "/formDesign",
  6. redirect: "/formDesign/index",
  7. meta: {
  8. icon: "terminal-window-line",
  9. title: $t("menus.hsFormDesign"),
  10. rank: formdesign
  11. },
  12. children: [
  13. {
  14. path: "/formDesign/index",
  15. name: "FormDesign",
  16. component: IFrame,
  17. meta: {
  18. title: $t("menus.hsFormDesign"),
  19. frameSrc:
  20. "https://haixin-fang.github.io/starfish-vue3-lowcode/playground/index.html#/"
  21. }
  22. }
  23. ]
  24. } as RouteConfigsTable;