Use Vuex to load and add notes.

This commit is contained in:
2020-09-07 19:58:02 +02:00
parent aba92e2025
commit 6aa5105c48
3 changed files with 35 additions and 7 deletions

View File

@ -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')