refactor(constants): 将字典枚举从core/shared移动到@vben/constants

将字典枚举相关常量从packages/@core/base/shared/src/constants移动到packages/constants模块
更新相关导出和导入路径,保持功能不变但改善代码组织结构
This commit is contained in:
dap
2026-01-15 09:41:41 +08:00
parent ee1b37c787
commit 35c96b3a9e
4 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,2 @@
export * from './dict-enum';
export * from './globals';
export * from './vben';

View File

@@ -1,2 +1,3 @@
export * from './core';
export * from './dict-enum';
export * from '@vben-core/shared/constants';