view client/src/store.js @ 515:ef7f56d326ae

fix: gemma configuration added to .hgignore In order to prevent accidentally committing gemma.toml it was added to .hgignore
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 27 Aug 2018 11:56:43 +0200
parents aee175e3f82c
children fb5d9d5ff320
line wrap: on
line source

import Vue from "vue";
import Vuex from "vuex";
import Application from "./stores/application";
import user from "./stores/user";
import usermanagement from "./stores/usermanagement";

Vue.use(Vuex);

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