28 lines
472 B
JavaScript
28 lines
472 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import queue from "./modules/queue.js";
|
|
import summary from "./modules/summary.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
|
|
export const store = new Vuex.Store({
|
|
state : {
|
|
tab_active : '01'
|
|
},
|
|
|
|
mutations : {
|
|
change_tab(state, tab) {
|
|
state.tab_active = tab;
|
|
}
|
|
},
|
|
|
|
modules : {
|
|
queue:queue,
|
|
summary:summary,
|
|
system: system
|
|
}
|
|
});
|