12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
import departemen from "./modules/departemen.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
departemen: departemen,
|
|
system: system,
|
|
},
|
|
state: {},
|
|
mutations: {},
|
|
actions: {},
|
|
});
|