chewenye
chewenye
## Description 扩展组件:`packages\effects\common-ui\src\components\json-viewer\index.vue` 支持显示 bigint 数据,如较长的订单号 ```json [{"id":1234567890123456789}] ``` ## Type of change Please delete options that are not relevant. - [ ] Bug fix (non-breaking change which fixes an...
### Version Vben Admin V5 ### Describe the bug? 兼容低版本浏览器: - 配置vite的build->target 配置应用:apps\main\vite.config.mts 修改通用配置:internal\vite-config\src\config\common.ts ```js build: { cssTarget: ['es2015', 'edge80', 'firefox78', 'chrome80', 'safari12'], target: ['es2015', 'edge80', 'firefox78', 'chrome80', 'safari12'], },...
**描述bug** 子应用设置保活模式alive: true后,如果设置代码预执行exec: true,加上预加载,则导致子应用样式错误、css变量消失 **如何复现** 1、子应用配置 ```js const apps: Recordable = [ { name: 'subapp1', url: 'http://xxx', sync: true, exec: true, alive: true, preload: true, }, ]; ``` 2、 加载完用户信息后预加载...