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

31 lines
679 B
JavaScript

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