From 2053725886e8635d771050e3697dd0acccb77def Mon Sep 17 00:00:00 2001 From: Thibaut Van Spaandonck Date: Tue, 13 Aug 2024 14:33:11 +0200 Subject: [PATCH] Fixed error in docs of List Rendering (#2929) --- src/guide/essentials/list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/list.md b/src/guide/essentials/list.md index 94800b697d..2f7943c86b 100644 --- a/src/guide/essentials/list.md +++ b/src/guide/essentials/list.md @@ -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: