This commit is contained in:
2021-09-25 15:12:02 +08:00
parent 943c07051c
commit 24aa6d50dd
25 changed files with 840 additions and 24 deletions

View File

@@ -1,3 +1,5 @@
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
@@ -5,6 +7,7 @@ import store, { key } from './store'
const app = createApp(App)
app.use(ElementPlus)
app.use(store, key)
app.use(router)
app.mount('#app')