18 lines
313 B
JavaScript
18 lines
313 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import bahan from "./modules/bahan.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
bahan: bahan,
|
|
system: system,
|
|
},
|
|
state: {},
|
|
mutations: {},
|
|
actions: {},
|
|
});
|