view client/src/store.js @ 938:fe923c8ef08f

client: add static legend image to contour_lines * Add a new image asset `legend_contour_lines.png` and display it for the "Bottleneck isolines" layer's legend. * Ensure that the "Bottleneck isolines" layer is not visible at startup. * Remove some outdated TODOISO and TODOSTYLE comments.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 09 Oct 2018 00:12:12 +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
  }
});