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') + '"'
}
},