27 lines
585 B
TypeScript
27 lines
585 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { board } from "@/router/enums";
|
|
const IFrame = () => import("@/layout/frame.vue");
|
|
|
|
export default {
|
|
path: "/board",
|
|
redirect: "/board/index",
|
|
meta: {
|
|
icon: "ri:artboard-line",
|
|
title: $t("menus.pureBoard"),
|
|
rank: board,
|
|
showLink: false
|
|
},
|
|
children: [
|
|
{
|
|
path: "/board/index",
|
|
name: "FrameBoard",
|
|
component: IFrame,
|
|
meta: {
|
|
title: $t("menus.pureBoard"),
|
|
keepAlive: true,
|
|
frameSrc: "https://songlh.top/paint-board/"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|