feat: 引入并注册ElementPlus组件库

This commit is contained in:
ZiuChen
2022-09-18 09:02:42 +08:00
parent c4c787c5d4
commit 5ee1e9ad8c
4 changed files with 209 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import less from 'less'
import registerElement from './global/registerElement'
const app = createApp(App)
app.use(less)
app.use(less).use(registerElement)
app.mount('#app')