gpt4 book ai didi

javascript - 如何使用 Vue2 一起管理 v-bind 和 v-on?

转载 作者:行者123 更新时间:2023-12-03 05:32:20 25 4
gpt4 key购买 nike

这是我在 v-foo 循环中的代码行:

<div class="box-comment" v-for="p in products">
<span v-on:click="addProduct(@{{ p.sku_f }})" class="btn text-muted pull-right"><i class="fa fa-plus"></i> Add</span>
</div>

我知道我不能在属性内使用 mustache 。我应该使用 v-bind 但在这种情况下我已经有一个 v-on...

应该如何应用两者?

最佳答案

如果您使用了任何 vue 指令,它会自动将其插入为 vue 变量。所以你只需要执行以下操作:

<div class="box-comment" v-for="p in products">
<span v-on:click="addProduct(p.sku_f)" class="btn text-muted pull-right"><i class="fa fa-plus"></i> Add</span>
</div>

关于javascript - 如何使用 Vue2 一起管理 v-bind 和 v-on?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40888358/

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