v1.4.2-patch.1 - add npm-webpack-demo webpack@5.78, vue@3.4

This commit is contained in:
LINING-PC\lining
2025-11-07 15:10:37 +08:00
parent 8982e6b57b
commit cacaece319
12 changed files with 5798 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createApp } from 'vue';
import App from './App.vue';
import ElementPlus from 'element-plus';
import 'element-plus/theme-chalk/index.css';
const app = createApp(App);
app.use(ElementPlus);
app.mount('#app');