Welcome to mirror list, hosted at ThFree Co, Russian Federation.

store.js « src - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 683967f212b1a1d49f2437bf724e12f8b836700e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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,
	},
})