view client/src/store.js @ 974:7a89313f0ead

Fetch the octree directly from the builder. No need to deserialize it from the blob.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 18 Oct 2018 15:11:49 +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
  }
});