This commit is contained in:
Your Name
2026-03-13 14:08:52 +08:00
parent 08dd9cd307
commit eb283f008b
667 changed files with 8425 additions and 27053 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { App } from 'vue'
export default function (app: App) {
// TUIKit 初始化会在组件使用时自动进行
// 这里只是确保插件被正确加载
if (typeof window !== 'undefined') {
// 防止 TUIKit 在初始化时出现错误
; (window as any).__TUIKIT_INITIALIZED__ = true
}
}