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