view client/src/store.js @ 1055:1ff8c072df18

WIP: Bottleneck list/table
author Markus Kottlaender <markus@intevation.de>
date Thu, 25 Oct 2018 15:05:20 +0200
parents 04a9e78dcc5f
children aa1f5daf6fc9
line wrap: on
line source

/*
 * This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 * 
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 * 
 * Copyright (C) 2018 by via donau 
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 * 
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */

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 Bottlenecks from "./bottlenecks/store";

Vue.use(Vuex);

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