view client/src/store.js @ 276:863ec6010045

merge
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Jul 2018 13:13:26 +0200
parents 0fd572582ab8
children aee175e3f82c
line wrap: on
line source

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

Vue.use(Vuex);

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