Skip to content

uniapp中使用v-show在支付宝小程序端无效

vue
<image v-show="checkedId === item.id" class="img-selected" :src="require('./img_selected.png')" />

这样写编译成h5页面和微信小程序是正常的,但编译成支付宝小程序不起作用

解决办法:将v-show换成style

vue
<image :style="checkedId === item.id ? '' : 'display: none'"  class="img-selected" :src="require('./img_selected.png')" />

如有转载或 CV 的请标注本站原文地址