更新vxetable框架并升级前端组件框架

This commit is contained in:
2026-06-03 11:19:52 +08:00
parent 5b6b23331d
commit 5a2050a736
385 changed files with 19691 additions and 21188 deletions

View File

@@ -1,4 +1,4 @@
import {createApp} from 'vue';
import {createApp} from 'vue';
import VxeUIAll from 'vxe-table';
import 'vxe-table/lib/style.css';
@@ -80,6 +80,15 @@ setTimeout(() => {
}
}, 500);
// Suppress Element Plus ElForm NaN width warning during vxe-table expand row teardown
const _origWarn = console.warn;
console.warn = (...args) => {
const msg = args[0]?.toString?.() ?? "";
if (msg.includes("[ElForm]") && msg.includes("unexpected width")) return;
_origWarn.apply(console, args);
};
const app = createApp(App);
// 检查是否在 WebView 环境中(使用可选链避免 ReferenceError