mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
26 lines
630 B
TypeScript
26 lines
630 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { formdesign } from "@/router/enums";
|
|
const IFrame = () => import("@/layout/frameView.vue");
|
|
|
|
export default {
|
|
path: "/formDesign",
|
|
redirect: "/formDesign/index",
|
|
meta: {
|
|
icon: "terminalWindowLine",
|
|
title: $t("menus.hsFormDesign"),
|
|
rank: formdesign
|
|
},
|
|
children: [
|
|
{
|
|
path: "/formDesign/index",
|
|
name: "FormDesign",
|
|
component: IFrame,
|
|
meta: {
|
|
title: $t("menus.hsFormDesign"),
|
|
frameSrc:
|
|
"https://haixin-fang.github.io/starfish-vue3-lowcode/playground/index.html#/"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|