美文网首页
vue 图片地址加载失败,使用默认图片代替

vue 图片地址加载失败,使用默认图片代替

作者: IssunRadiance | 来源:发表于2020-08-14 10:30 被阅读0次

使用onerror   

<img :src="item.images? item.images : ''" :onerror="defaultAvatar" />

computed: {

      defaultAvatar () {

        return 'this.src="'+ require('../assets/img/add.png') +'"'

      }

    },

其中../assets/img/add.png 为加载失败时 显示的默认图片的地址

相关文章

网友评论

      本文标题:vue 图片地址加载失败,使用默认图片代替

      本文链接:https://www.haomeiwen.com/subject/sdfgdktx.html