From b2713e9b1a98025f3da910bd9f5a486a88b17a61 Mon Sep 17 00:00:00 2001 From: Thibaut Van Spaandonck Date: Thu, 11 Jul 2024 16:37:32 +0200 Subject: [PATCH] Fixed error in docs of List Rendering --- 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: