31 lines
679 B
JavaScript
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: {
|
|
|
|
}
|
|
}); |