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