<el-image :src="goodsPic" style=" width:80px"></el-image>
图片路径没有任何问题,页面没有报错,但是图片加载失败。
然后给图片路径加了一个判断:
<el-image :src="goodsPic" style="80px" v-if="goodsPic!==null"></el-image>
这样,当goodsPic被赋值之后会再次渲染一下标签,就可以显示图片了。
<el-image :src="goodsPic" style=" width:80px"></el-image>
图片路径没有任何问题,页面没有报错,但是图片加载失败。
然后给图片路径加了一个判断:
<el-image :src="goodsPic" style="80px" v-if="goodsPic!==null"></el-image>
这样,当goodsPic被赋值之后会再次渲染一下标签,就可以显示图片了。