标签属性三元表达式
:title="id ? 'value1' : 'value2' "
标签内三元表达式
<span>{{ id ? "立即购买" : "加入购物车" }}</span>
标签内设置默认值
<span>{{ detail.pay_money || 0 }}</span>
标签属性设置默认值
<img :src="item.user.avatar_url || defalutimg" alt="" />
vue2逻辑中设置默认值
data () {
return {
active: this.$route.query.dataType || 'all'
}
},
<van-search :value="getquery || '搜索商品'">
517

被折叠的 条评论
为什么被折叠?



