4
2
mirror of https://github.com/getbible/app.git synced 2024-12-22 15:58:55 +00:00

register store as a global plugin

This commit is contained in:
Erastus Amunwe 2020-10-26 23:07:59 +02:00
parent 9e487fac4d
commit b000c34300

View File

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