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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/store.js')
-rw-r--r--src/store.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store.js b/src/store.js
index 683967f2..320ad662 100644
--- a/src/store.js
+++ b/src/store.js
@@ -1,5 +1,5 @@
import Vue from 'vue'
-import Vuex from 'vuex'
+import Vuex, { Store } from 'vuex'
import app from './store/app'
import notes from './store/notes'
@@ -7,7 +7,7 @@ import sync from './store/sync'
Vue.use(Vuex)
-export default new Vuex.Store({
+export default new Store({
modules: {
app,
notes,