37 lines
834 B
JavaScript
37 lines
834 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import doctorlist from "./modules/doctorlist.js";
|
|
import patient from "./modules/patient.js";
|
|
import other from "./modules/other.js";
|
|
import area from "./modules/area.js";
|
|
import order from "./modules/order.js";
|
|
import photo from "./modules/photo.js";
|
|
import company from "./modules/company.js";
|
|
import sender from "./modules/sender.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
doctorlist: doctorlist,
|
|
patient: patient,
|
|
other: other,
|
|
area: area,
|
|
order: order,
|
|
photo: photo,
|
|
company: company,
|
|
sender: sender,
|
|
system:system
|
|
},
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
}); |