Files
FE_CPONE/test/vuex/cpone-md-kelainan-lab/store.js
2026-04-27 10:13:31 +07:00

23 lines
361 B
JavaScript

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