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:
authorkorelstar <korelstar@users.noreply.github.com>2022-03-13 23:39:13 +0300
committerkorelstar <korelstar@users.noreply.github.com>2022-03-13 23:39:13 +0300
commit0ecb76a617d304cc8bdd16380ed9249c92190af5 (patch)
treed5076d755bd8340e3ae8c2adb4c1f83a467f35fc
parent0c333a4acfc082ffa2b1e00f242a986c08e52779 (diff)
fix import/no-named-as-default-memberdeps
-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,