Files
vue3-element-admin/types/router.d.ts
2026-06-25 00:17:52 +08:00

22 lines
416 B
TypeScript

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