comparison 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
comparison
equal deleted inserted replaced
645:794592cad75a 646:4450f2ab41e0
2 import Vuex from "vuex"; 2 import Vuex from "vuex";
3 import Application from "./application/stores/application"; 3 import Application from "./application/stores/application";
4 import user from "./application/stores/user"; 4 import user from "./application/stores/user";
5 import usermanagement from "./usermanagement/store"; 5 import usermanagement from "./usermanagement/store";
6 import mapstore from "./map/store"; 6 import mapstore from "./map/store";
7 import FairwayProfile from "./fairway/store";
7 8
8 Vue.use(Vuex); 9 Vue.use(Vuex);
9 10
10 export default new Vuex.Store({ 11 export default new Vuex.Store({
11 modules: { 12 modules: {
12 application: Application, 13 application: Application,
13 user: user, 14 user: user,
14 usermanagement: usermanagement, 15 usermanagement: usermanagement,
15 mapstore: mapstore 16 mapstore: mapstore,
17 fairwayprofile: FairwayProfile
16 } 18 }
17 }); 19 });