初始化前端项目

This commit is contained in:
qiangyanwen 2022-05-29 19:53:01 +08:00
parent f3029ede8c
commit 0cc9159b9b
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
createApp(App).mount('#app')
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')