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