Files
2026-06-11 10:31:24 +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;
}
}