vue里,img加载错误的时候,onerror属性可以加载错误图片的默认图片
有效解决显示默认图片同时还可以兼容IE哦
<img :src="userInfo.portrait ? userInfo.portrait : img " :onerror="img" class="p-portrait">
data() {
return {
img: 'this.src="' + require('@/assets/1.jpg') + '"'
}
},
vue里,img加载错误的时候,onerror属性可以加载错误图片的默认图片
有效解决显示默认图片同时还可以兼容IE哦
<img :src="userInfo.portrait ? userInfo.portrait : img " :onerror="img" class="p-portrait">
data() {
return {
img: 'this.src="' + require('@/assets/1.jpg') + '"'
}
},