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

23 lines
348 B
JavaScript

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