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

27 lines
494 B
JavaScript

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