🐛Fix: 修复 Element-plus 未挂载问题

This commit is contained in:
2025-10-07 22:04:33 +08:00
parent 6d323146ff
commit 3f9b966880
+3 -1
View File
@@ -1,4 +1,6 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
createApp(App).mount('#app') createApp(App).use(ElementPlus).mount('#app')