mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-09 01:47:20 +08:00
25 lines
539 B
TypeScript
25 lines
539 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { board } from "@/router/enums";
|
|
const IFrame = () => import("@/layout/frameView.vue");
|
|
|
|
export default {
|
|
path: "/board",
|
|
redirect: "/board/index",
|
|
meta: {
|
|
icon: "ri:artboard-line",
|
|
title: $t("menus.hsboard"),
|
|
rank: board
|
|
},
|
|
children: [
|
|
{
|
|
path: "/board/index",
|
|
name: "FrameBoard",
|
|
component: IFrame,
|
|
meta: {
|
|
title: $t("menus.hsboard"),
|
|
frameSrc: "https://songlh.top/paint-board/"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|