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