view client/src/store.js @ 1010:8f23ec811afb

Fixed and harmonized wording in importer queue a bit.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 23 Oct 2018 10:14:41 +0200
parents 3da707172772
children ca628dce90dd
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";
import IdentifyStore from "./identify/store";
import MorphStore from "./morphtool/store";

Vue.use(Vuex);

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