Files
Yi.Framework/Yi.Pure.Vue3/src/router/modules/board.ts
2024-08-30 16:08:20 +08:00

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;