33 lines
766 B
JavaScript
33 lines
766 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import worklist_patient from "./modules/worklist_patient.js";
|
|
import worklist_new from "./modules/worklist_new.js";
|
|
import receive_patient from "./modules/receive_patient.js";
|
|
import pre_analytic from "./modules/pre_analytic.js";
|
|
import staff from "./modules/staff.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
|
|
export const store = new Vuex.Store({
|
|
state : {
|
|
},
|
|
|
|
mutations : {
|
|
change_tab(state, tab) {
|
|
state.tab_active = tab;
|
|
}
|
|
},
|
|
|
|
modules : {
|
|
receive_patient: receive_patient,
|
|
worklist_patient: worklist_patient,
|
|
worklist_new: worklist_new,
|
|
pre_analytic: pre_analytic,
|
|
staff: staff,
|
|
system: system
|
|
}
|
|
});
|