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

25 lines
422 B
JavaScript

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