1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Vue使用v-for绑定两个属性拼接渲染界面

Vue使用v-for绑定两个属性拼接渲染界面

时间:2020-03-10 08:36:02

相关推荐

Vue使用v-for绑定两个属性拼接渲染界面

现在从数据库取回的数据中,要渲染的image的src是imageHost+mainImage:

拼接方式:

:thumb=“item.imageHost+’’+item.mainImage”

<!-- 商品列表 --><section class="product-list"><div class="product-container"><van-card v-for="(item,index) in products" :key="index" :data-i="item.id" :num="item.stock" :price="item.price" :desc="item.subtitle" :title="item.name" lazy-load="true" :thumb="item.imageHost+''+item.mainImage" :origin-price="item.originalPrice" /></div></section>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。