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

26 lines
476 B
JavaScript

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