Files
vue3-element-admin/types/router.d.ts
2026-06-18 18:38:12 +08:00

20 lines
371 B
TypeScript

import "vue-router";
declare module "vue-router" {
/**
* 项目路由元信息扩展
*/
interface RouteMeta {
title?: string;
icon?: string;
hidden?: boolean;
alwaysShow?: boolean;
affix?: boolean;
keepAlive?: boolean;
breadcrumb?: boolean;
activeMenu?: string;
params?: Record<string, unknown>;
roles?: string[];
}
}