23 lines
348 B
JavaScript
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: {
|
|
|
|
}
|
|
}); |