vue 图片路径请求错误返回默认图片
//html
<img:src="item.pictureDisplayPath ? item.pictureDisplayPath : labimg" @error="defaultCattle" />
//data定义
labimg:require("图片路径"),
//方法
defaultCattle(event) {
let img = event.srcElement;
img.src = this.labimg;//默认图片路径,data定义
img.onerror = null;
},