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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2022-02-12 15:47:49 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2022-02-12 15:47:49 +0300
commitefd6b31b6e0b7d60f2df92abbd9a67ff4d0e68c6 (patch)
tree299498115038f36f33b75ea800077ce54aea50cd /src
parent2ef0498b5644ab05bd569962dcdb01faa76a771d (diff)
Fix import/no-named-as-default-member
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src')
-rw-r--r--src/store/store.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/store.js b/src/store/store.js
index 8bdad690..9d63b565 100644
--- a/src/store/store.js
+++ b/src/store/store.js
@@ -28,11 +28,11 @@ import settings from './settings'
import principals from './principals'
import Vue from 'vue'
-import Vuex from 'vuex'
+import Vuex, { Store } from 'vuex'
Vue.use(Vuex)
-export default new Vuex.Store({
+export default new Store({
modules: {
calendars,
collections,