Files
2026-05-25 20:01:37 +07:00

27 lines
507 B
JavaScript

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