1234567891011121314151617181920212223242526 |
- import { $t } from "@/plugins/i18n";
- import { formdesign } from "@/router/enums";
- const IFrame = () => import("@/layout/frameView.vue");
- export default {
- path: "/form-design",
- redirect: "/form-design/index",
- meta: {
- icon: "terminalWindowLine",
- title: $t("menus.hsFormDesign"),
- rank: formdesign
- },
- children: [
- {
- path: "/form-design/index",
- name: "FormDesign",
- component: IFrame,
- meta: {
- title: $t("menus.hsFormDesign"),
- frameSrc:
- "https://haixin-fang.github.io/vue-form-design/playground/index.html",
- frameLoading: false
- }
- }
- ]
- } satisfies RouteConfigsTable;
|