mirror of
https://github.com/certd/certd.git
synced 2026-04-22 19:17:25 +08:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import LayoutBasic from "/@/layout/layout-basic.vue";
|
|
|
|
import type { RouteRecordRaw } from "vue-router";
|
|
import i18n from "/@/locales/i18n";
|
|
|
|
import { mergeRouteModules } from "/@/vben/utils";
|
|
const dynamicRouteFiles = import.meta.glob("./modules/**/*.ts*", {
|
|
eager: true,
|
|
});
|
|
|
|
/** 动态路由 */
|
|
const dynamicRoutes: RouteRecordRaw[] = mergeRouteModules(dynamicRouteFiles);
|
|
export const frameworkResource = [
|
|
{
|
|
title: "certd.framework.title",
|
|
name: "root",
|
|
path: "/",
|
|
redirect: "/index",
|
|
component: LayoutBasic,
|
|
meta: {
|
|
icon: "ion:accessibility",
|
|
hideInBreadcrumb: true,
|
|
},
|
|
children: [
|
|
{
|
|
title: "certd.framework.home",
|
|
name: "index",
|
|
path: "/index",
|
|
component: "/framework/home/index.vue",
|
|
meta: {
|
|
fixedAside: true,
|
|
showOnHeader: false,
|
|
icon: "ion:home-outline",
|
|
auth: true,
|
|
},
|
|
},
|
|
// @ts-ignore
|
|
|
|
...dynamicRoutes,
|
|
],
|
|
},
|
|
];
|
|
|
|
console.assert(frameworkResource.length === 1, "frameworkResource数组长度只能为1,你只能配置framework路由的子路由");
|