view client/src/store.js @ 977:4a2ca0e20006

Fixed build error. Copied file to the wrong place and said 'go build' to another wrong place. Argh.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 18 Oct 2018 17:30:53 +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
  }
});