gpt4 book ai didi

javascript - Vue 元素内部迭代

转载 作者:行者123 更新时间:2023-12-03 04:55:52 26 4
gpt4 key购买 nike

我正在尝试从 Vue 组件中迭代数组,而不重复我调用“v-for”的元素。我在 official docs API 中没有找到“v-for”的替代品,也不在 articles 中在线。

我有这个:

<div v-for="(item, index) in items">
<foo :index="index">
<foo/>
</div>

想要这个:

<foo :index="0"><foo/> 

<foo :index="1"><foo/>

<foo :index="2"><foo/>
//etc...

并尝试过这个,但不起作用:

<foo v-for="(item, index) in items":index="index">
<foo/>

非常感谢您的帮助!昨天开始使用 Vue.js 编码。

最佳答案

您的 HTML 错误。你完全可以做到这一点。

<foo v-for="(item, index) in items" :index="index"></foo>

关于javascript - Vue 元素内部迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42425370/

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