This commit is contained in:
chenjinsong
2021-06-07 18:35:16 +08:00
parent c68ac91e2d
commit 13329e8f85
27 changed files with 3064 additions and 448 deletions

View File

@@ -1,4 +1,15 @@
import { createApp } from 'vue'
import router from './router'
import store from './store'
import App from './App.vue'
createApp(App).mount('#app')
import '@/assets/css/main.scss' // 样式入口
import ElementPlus from 'element-plus'
const app = createApp(App)
app.use(router)
app.use(store)
app.use(ElementPlus)
app.mount('#app')