Use Vuex to load and add notes.
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import store from './store/index.js'
|
||||
|
||||
window.app = createApp(App).mount('#app')
|
||||
window.app = createApp(App)
|
||||
.use(store)
|
||||
.use(store)
|
||||
.mount('#app')
|
||||
|
Reference in New Issue
Block a user