view client/src/store.js @ 165:4bf2173748f3

refactor: extracted the string to milisecondconversion Extracted the conversion of session data to string conversion to Method. SRP.
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 06 Jul 2018 11:04:52 +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
  }
});