35 lines
702 B
JavaScript
35 lines
702 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import patient from "./modules/patient.js";
|
|
import doctor from "./modules/doctor.js";
|
|
import payment from "./modules/payment.js";
|
|
import order from "./modules/order.js";
|
|
import area from "./modules/area.js";
|
|
import other from "./modules/other.js";
|
|
import photo from "./modules/photo.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
|
|
export const store = new Vuex.Store({
|
|
state : {
|
|
|
|
},
|
|
|
|
mutations : {
|
|
},
|
|
|
|
modules : {
|
|
patient: patient,
|
|
doctor: doctor,
|
|
payment: payment,
|
|
order: order,
|
|
area: area,
|
|
other: other,
|
|
photo: photo,
|
|
system: system
|
|
}
|
|
});
|