This commit is contained in:
2021-09-17 12:47:42 +08:00
parent 32db8aca51
commit 2898a6362f
13 changed files with 96 additions and 28 deletions

View File

@@ -1,10 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import store, { key } from './store'
const app = createApp(App)
app.use(store)
app.use(store, key)
app.use(router)
app.mount('#app')