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:
parent
9e487fac4d
commit
b000c34300
@ -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')
|
Loading…
Reference in New Issue
Block a user