xframelib 0.9.3 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/core/IModel.d.ts +4 -0
- package/dist/index.cjs +3 -15
- package/dist/index.css +44 -44
- package/dist/index.js +3 -15
- package/dist/model/Config.d.ts +5 -0
- package/dist/utils/TokenHelper.d.ts +3 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
> 基于 VUE3+Hprose+Typescript+Widget 的前端框架,与ElementUI、AntDesign VUE、Quasar等界面库无关,一直是来源于项目和服务于项目。
|
|
15
15
|
|
|
16
|
+
- *v0.9.5 SysConfig.js引入UI.OnlyUserVerify配置可以启用“只验证用户,不验证功能”;uuid方法改为小写;更新依赖库版本;
|
|
17
|
+
- v0.9.4 修改ADivider组件线样式问题;修改XWindow组件拖拽位置计算不对的BUG;更新js依赖版本;
|
|
16
18
|
- v0.9.3 更新依赖;提升单个大文件上传速度,对应后端服务并发写排队模式(前端默认并发3个请求);
|
|
17
19
|
- v0.9.2 精简更新依赖;升级增强内部功能控制;积累与完善部分基础功能;匹配最新简化模板;
|
|
18
20
|
- v0.9.1 增加a-divider组件;升级BigFileDownload方法(与新版文件服务匹配);解决GlobalHprose.getDefaultClient()为空对象问题;
|
|
@@ -227,7 +229,7 @@ export default boot(({ app }) => {
|
|
|
227
229
|
//初始化Xframelib
|
|
228
230
|
preInit();
|
|
229
231
|
//启动热更新监测
|
|
230
|
-
if (
|
|
232
|
+
if (import.meta.env.DEV) autoRefresh();
|
|
231
233
|
// 创建pinia 实例——20240221这里不需要了,在src/stores/index.ts里挂接的
|
|
232
234
|
// const pinia = createPinia();
|
|
233
235
|
// app.use(pinia);
|