diff client/src/store.js @ 646:4450f2ab41e0

refac: Fairwawprofile view adapted 1) Made view responsive to browser resize events 2) Factored out sample data into separate store component
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 13 Sep 2018 13:02:04 +0200
parents ef307bd6b5d8
children 3da707172772
line wrap: on
line diff
--- a/client/src/store.js	Thu Sep 13 12:59:18 2018 +0200
+++ b/client/src/store.js	Thu Sep 13 13:02:04 2018 +0200
@@ -4,6 +4,7 @@
 import user from "./application/stores/user";
 import usermanagement from "./usermanagement/store";
 import mapstore from "./map/store";
+import FairwayProfile from "./fairway/store";
 
 Vue.use(Vuex);
 
@@ -12,6 +13,7 @@
     application: Application,
     user: user,
     usermanagement: usermanagement,
-    mapstore: mapstore
+    mapstore: mapstore,
+    fairwayprofile: FairwayProfile
   }
 });