view 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 source

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";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    application: Application,
    user: user,
    usermanagement: usermanagement,
    mapstore: mapstore,
    fairwayprofile: FairwayProfile
  }
});