当前位置 博文首页 > wusq的博客:elementUI el-image图片加载失败解决

    wusq的博客:elementUI el-image图片加载失败解决

    作者:[db:作者] 时间:2021-07-16 13:09

    使用el-image显示图片加载失败

    ?代码:

    <el-image
        style="width: 100%; height:50px; margin:4px 5px 2px 5px;"
        src="../assets/logo1.png"
    />

    效果:

    解决:src用里面加个require

    代码:

    <el-image
        style="width: 100%; height:50px; margin:4px 5px 2px 5px;"
        :src="require('../assets/logo1.png')"
    />

    效果:

    cs
    下一篇:没有了