Files
2026-04-27 10:13:31 +07:00

35 lines
734 B
JavaScript

// State
// data ...
// Mutations
//
//
// Actions
import header from "./modules/header.js";
// import detail from "./modules/detail.js";
// import newx from "./modules/new.js";
import system from "../../../apps/modules/system/system.js";
export const store = new Vuex.Store({
modules: {
header: header,
// detail: detail,
// newx: newx,
system: system
},
state: {
dialog_confirm: false,
dialog_new: false
},
mutations: {
update_dialog_confirm(state, v) {
state.dialog_confirm = v
},
update_dialog_new(state, v) {
state.dialog_new = v
}
},
actions: {
}
});