Skip to content

Commit

Permalink
Fixed error in docs of List Rendering (#2929)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibautvs authored Aug 13, 2024
1 parent 433d4be commit 2053725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/essentials/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ You can also use `of` as the delimiter instead of `in`, so that it is closer to

## `v-for` with an Object {#v-for-with-an-object}

You can also use `v-for` to iterate through the properties of an object. The iteration order will be based on the result of calling `Object.keys()` on the object:
You can also use `v-for` to iterate through the properties of an object. The iteration order will be based on the result of calling `Object.values()` on the object:

<div class="composition-api">

Expand Down

0 comments on commit 2053725

Please sign in to comment.