view client/src/store.js @ 1119:6d4cc4389c8f store-refactoring

merged default into store-refactoring
author Markus Kottlaender <markus@intevation.de>
date Tue, 06 Nov 2018 09:12:05 +0100
parents 8d12056d602a
children dc3f0277628a
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 "./store/application";
import user from "./store/user";
import usermanagement from "./store/usermanagement";
import map from "./store/map";
import fairwayprofile from "./store/fairway";
import bottlenecks from "./store/bottlenecks";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    application,
    fairwayprofile,
    bottlenecks,
    map,
    user,
    usermanagement
  }
});