uniapp中image src动态引用图片不生效

不生效举例:
<image :src="pngimg" mode="aspectFit"></image>
this.pngimg='../static/img/bigVisbilityyellow.png'
解决方法:去掉前面的 …/@等符号
##eg:
<image :src="pngimg" mode="aspectFit"></image>
this.pngimg='/static/img/bigVisbilityyellow.png'

你可能感兴趣的:(javascript,html)