Files
FE_CPONE/test/vuex/one-md-test-ref/store.js
2026-04-27 10:13:31 +07:00

28 lines
568 B
JavaScript

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