gpt4 book ai didi

javascript - VueJS : How to pass interpolated variable as parameter

转载 作者:搜寻专家 更新时间:2023-10-30 22:22:20 25 4
gpt4 key购买 nike

我想将 v-for 循环的索引作为参数传递到我的 removeTask 函数中。我该怎么做?

<ol class="list-group">
<li v-for="task in tasks"
class="list-group-item">
{{ task.body }}
<button class="btn btn-primary" v-on:click="removeTask({{$index}})">x</button>
</li>
</ol>

建议非常感谢:)

最佳答案

你应该删除方括号{{ }}

<button class="btn btn-primary" v-on:click="removeTask($index)">x</button>

关于javascript - VueJS : How to pass interpolated variable as parameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34241851/

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