view client/src/store.js @ 662:d856e458dd64 octree

Added snappy to 3rd party libs.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 18 Sep 2018 00:13:51 +0200
parents 4450f2ab41e0
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
  }
});