mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-09 01:47:20 +08:00
27 lines
654 B
TypeScript
27 lines
654 B
TypeScript
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;
|