16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import report from "./modules/report.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
|
|
export const store = new Vuex.Store({
|
|
modules : {
|
|
report:report,
|
|
system: system
|
|
}
|
|
});
|