// State // data ... // Mutations // // // Actions import control from "./modules/control.js"; import instrument from "./modules/instrument.js"; import qc from "./modules/qc.js"; import system from "../../../apps/modules/system/system.js"; export const store = new Vuex.Store({ modules: { control: control, instrument: instrument, qc: qc, system:system }, state: { }, mutations: { }, actions: { } });