import Vue from "vue"; const globalCustoms = Vue.prototype.$customs; let globalFun = ()=>{ return { getMethod : (api : any , data : any)=>{ if(globalCustoms.flag){ return globalCustoms[globalCustoms["name"]][`${api}`](data); }else{ return data } } } } export default globalFun