第一次上传

This commit is contained in:
xxk
2026-06-11 10:31:24 +08:00
commit cfef094568
1523 changed files with 210650 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* 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;
}
}