Files
REG_IBL/one-ui/app-dokter/one-md-doctor-testv3/store.js
2026-05-25 20:01:37 +07:00

25 lines
435 B
JavaScript

// State
// data ...
// Mutations
//
//
// Actions
import doctor from "./modules/doctor.js";
import doctortest from "./modules/doctortest.js";
import system from "../../apps/modules/system/system.js";
export const store = new Vuex.Store({
modules: {
doctor: doctor,
doctortest: doctortest,
system:system
},
state: {
},
mutations: {
},
actions: {
}
});