Vue.prototype.modal = {
show: true
};
Vue.prototype.showModal= function({title = "提示", content = "是否确认"}){
console.log(this);
return new Promise((resolve, reject)=>{
this.modal = {
show: true,
title,
content,
callback: resolve,
catch: reject
};
});
};