diff client/src/store.js @ 1096:aa1f5daf6fc9

refac: centralized stores
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 30 Oct 2018 16:55:29 +0100
parents 1ff8c072df18
children 2c3d32322126
line wrap: on
line diff
--- a/client/src/store.js	Tue Oct 30 13:37:04 2018 +0100
+++ b/client/src/store.js	Tue Oct 30 16:55:29 2018 +0100
@@ -16,13 +16,13 @@
 
 import Vue from "vue";
 import Vuex from "vuex";
-import Application from "./application/stores/application";
-import user from "./application/stores/user";
-import usermanagement from "./usermanagement/store";
-import mapstore from "./map/store";
-import FairwayProfile from "./fairway/store";
-import IdentifyStore from "./identify/store";
-import Bottlenecks from "./bottlenecks/store";
+import Application from "./store/application";
+import user from "./store/user";
+import usermanagement from "./store/usermanagement";
+import mapstore from "./store/map";
+import FairwayProfile from "./store/fairway";
+import IdentifyStore from "./store/identify";
+import Bottlenecks from "./store/bottlenecks";
 
 Vue.use(Vuex);