Files
FE_CPONE/test/vuex/one-fo-clinic-registration/store.js
2026-04-27 10:13:31 +07:00

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