// State // data ... // Mutations // // // Actions import methodepriority from "./modules/methodepriority.js"; import system from "../../../apps/modules/system/system.js"; export const store = new Vuex.Store({ modules: { methodepriority: methodepriority, system: system }, state: { tab_selected: 'pasien-dokter' }, mutations: { change_tab(state, ntab) { state.tab_selected = ntab } }, actions: { change_tab(context, ntab) { context.commit('change_tab', ntab) } } });