27 lines
492 B
JavaScript
27 lines
492 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import template from "./modules/template.js";
|
|
import template_detail from "./modules/template_detail.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
|
|
export const store = new Vuex.Store({
|
|
state : {
|
|
},
|
|
|
|
mutations : {
|
|
change_tab(state, tab) {
|
|
state.tab_active = tab;
|
|
}
|
|
},
|
|
|
|
modules : {
|
|
template: template,
|
|
template_detail: template_detail,
|
|
system: system
|
|
}
|
|
});
|