view client/src/store.js @ 781:f6a6ce90a1b5

client: improve search * Make result entries clickable and catch the event. * Sort methods: in code.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 26 Sep 2018 14:35:55 +0200
parents 4450f2ab41e0
children 3da707172772
line wrap: on
line source

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";

Vue.use(Vuex);

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