Flatten nested repos
This commit is contained in:
32
test/vuex/one-mapping-batch-v2/store.js
Normal file
32
test/vuex/one-mapping-batch-v2/store.js
Normal file
@@ -0,0 +1,32 @@
|
||||
// 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
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user