We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de7116a commit 10fccfdCopy full SHA for 10fccfd
docs/src/pages/guide/components/nested-objects-and-arrays.mdx
@@ -197,7 +197,7 @@ _*Iterate over both `users` and `links`:*_
197
<div v-for="(userEntry, userIdx) in users">
198
<FieldArray :name="`users[${userIdx}].links`" v-slot="{ fields: links }">
199
<div v-for="(entry, idx) in fields" :key="entry.key">
200
- <Field :name="`users[${userIdx}].links[idx]`" />
+ <Field :name="`users[${userIdx}].links[${idx}]`" />
201
</div>
202
</FieldArray>
203
0 commit comments