Files
2026-04-27 10:13:31 +07:00

29 lines
454 B
JavaScript

// 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
}
});