25 lines
443 B
JavaScript
25 lines
443 B
JavaScript
// State
|
|
// data ...
|
|
// Mutations
|
|
//
|
|
//
|
|
// Actions
|
|
import nattest from "./modules/nattest.js";
|
|
import nattestlang from "./modules/nattestlang.js";
|
|
import system from "../../apps/modules/system/system.js";
|
|
export const store = new Vuex.Store({
|
|
modules: {
|
|
nattestlang: nattestlang,
|
|
nattest: nattest,
|
|
system:system
|
|
},
|
|
state: {
|
|
|
|
},
|
|
mutations: {
|
|
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
}); |