nextcloud-notes/src/store.js

17 lines
234 B
JavaScript

import Vue from 'vue'
import Vuex from 'vuex'
import app from './store/app'
import notes from './store/notes'
import sync from './store/sync'
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
app,
notes,
sync,
},
})