board.ts 539 B

123456789101112131415161718192021222324
  1. import { $t } from "@/plugins/i18n";
  2. import { board } from "@/router/enums";
  3. const IFrame = () => import("@/layout/frameView.vue");
  4. export default {
  5. path: "/board",
  6. redirect: "/board/index",
  7. meta: {
  8. icon: "ri:artboard-line",
  9. title: $t("menus.hsboard"),
  10. rank: board
  11. },
  12. children: [
  13. {
  14. path: "/board/index",
  15. name: "FrameBoard",
  16. component: IFrame,
  17. meta: {
  18. title: $t("menus.hsboard"),
  19. frameSrc: "https://songlh.top/paint-board/"
  20. }
  21. }
  22. ]
  23. } satisfies RouteConfigsTable;