gpt4 book ai didi

vue.js - 路由器链接绑定(bind)到 b 卡图像

转载 作者:行者123 更新时间:2023-12-04 12:25:34 24 4
gpt4 key购买 nike

是否可以将 router-link 绑定(bind)到 b-card 的 image 属性,它们是
物理上不存在,我想在图像点击时切换链接

 <b-col lg="3" v-for="product in products" v-bind:key="product.id">
<b-card
v-bind:title="product.title"
v-bind:img-src="product.img"
v-bind:img-alt="product.alt"
img-top
tag="article"
style="max-width: 20rem;"
class="mb-2">
<b-card-text>Some quick example text to build on the card title and
make up the bulk of the card's content.</b-card-text>
</b-card>
</b-col>

有没有不手动创建“img”标签的解决方案?

最佳答案

这是我找到的最佳解决方案

<b-card no-body
v-bind:title="product.title"
v-bind:img-alt="product.alt"
img-top
tag="article"
style="max-width: 20rem;"
class="mb-2"
>
<router-link :to="/someurl">
<b-card-img :src="product.img"/>
</router-link>
<b-card-body>
<b-card-title>CCCCCCCCc</b-card-title>
<b-card-text>Some quick example text to build on the card title and make up
the
bulk of the card's content.</b-card-text>
</b-card-body>
</b-card>
</b-col>

关于vue.js - 路由器链接绑定(bind)到 b 卡图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56034147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com