- 重构 enums: 按业务域合并为 5 个文件 - 创建 config: storage.ts, vxe-table.ts - 删除 plugins,功能迁移到 main.ts - 创建完整 types 结构 - 新增 utils: validators, websocket, register-components - 创建 router/guards/permission.ts - 更新配置文件
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
/**
|
|
* 常量统一导出
|
|
*
|
|
* @deprecated 此文件已废弃,请使用以下路径:
|
|
* - 存储键常量 @/config/storage
|
|
* - 验证规则 @/utils/validators
|
|
* - 角色常量 @/enums
|
|
*/
|
|
|
|
// 向后兼容导出
|
|
export * from "@/config/storage";
|
|
export { ROLE_ROOT } from "@/enums";
|
|
export { VALIDATORS } from "@/utils/validators";
|