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