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

25 lines
438 B
JavaScript

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