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

25 lines
430 B
JavaScript

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