1、在点击事件上添加@click.native
@click.native="function(index)"
2、在方法里面添加 window.event.stopPropagation();
purchaseWrite(e){
this.purchaseWriteId = e;
this.show = true;
window.event.stopPropagation();
},
@click.native="function(index)"
purchaseWrite(e){
this.purchaseWriteId = e;
this.show = true;
window.event.stopPropagation();
},