Files
vue3-element-admin/types/router.d.ts
2025-12-26 12:35:37 +08:00

18 lines
301 B
TypeScript

/**
* Vue Router 类型扩展
*/
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;
}
}