// State // data ... // Mutations // // // Actions import rp_patient from "./modules/rp_patient.js"; import system from "../../../apps/modules/system/system.js"; export const store = new Vuex.Store({ state : { tab_active : '01', tabs : [ ] }, mutations : { change_tab(state, tab) { state.tab_active = tab; } }, modules : { rp_patient: rp_patient, system: system } });