- 重构 enums: 按业务域合并为 5 个文件 - 创建 config: storage.ts, vxe-table.ts - 删除 plugins,功能迁移到 main.ts - 创建完整 types 结构 - 新增 utils: validators, websocket, register-components - 创建 router/guards/permission.ts - 更新配置文件
17 lines
276 B
TypeScript
17 lines
276 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;
|
|
}
|
|
}
|