12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
import manager from "./modules/manager.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
manager: manager,
|
|
system: system,
|
|
},
|
|
state: {},
|
|
mutations: {},
|
|
actions: {},
|
|
});
|