27 lines
600 B
TypeScript
27 lines
600 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { mind } from "@/router/enums";
|
|
const IFrame = () => import("@/layout/frame.vue");
|
|
|
|
export default {
|
|
path: "/mind-map",
|
|
redirect: "/mind-map/index",
|
|
meta: {
|
|
icon: "ri:mind-map",
|
|
title: $t("menus.pureMindMap"),
|
|
rank: mind,
|
|
showLink: false
|
|
},
|
|
children: [
|
|
{
|
|
path: "/mind-map/index",
|
|
name: "FrameMindMap",
|
|
component: IFrame,
|
|
meta: {
|
|
title: $t("menus.pureMindMap"),
|
|
keepAlive: true,
|
|
frameSrc: "https://wanglin2.github.io/mind-map/#/"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|