27 lines
494 B
JavaScript
27 lines
494 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import control from "./modules/control.js";
|
|
import info from "./modules/info.js";
|
|
import register from "./modules/register.js";
|
|
import system from "../../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
control: control,
|
|
info: info,
|
|
register: register,
|
|
system:system
|
|
},
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
}); |