From 7e68a16e069a2893338edaaab329e08f8ebd5955 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:32:56 +0530 Subject: [PATCH 1/3] Revert "fix typo (#2769)" This reverts commit ccf052dffe27755f8c8f39a0c82ccf0aaf054886. --- src/guide/essentials/component-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/component-basics.md b/src/guide/essentials/component-basics.md index 07f0532c87..ba031bf823 100644 --- a/src/guide/essentials/component-basics.md +++ b/src/guide/essentials/component-basics.md @@ -298,7 +298,7 @@ Then want to render a component for each one, using `v-for`: -Notice how `v-for` is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. +Notice how `v-bind` is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. That's all you need to know about props for now, but once you've finished reading this page and feel comfortable with its content, we recommend coming back later to read the full guide on [Props](/guide/components/props). From b0430d8baf613006656c27edb82b08bc2040dd62 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:33:43 +0530 Subject: [PATCH 2/3] Update component-basics.md --- src/guide/essentials/component-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/component-basics.md b/src/guide/essentials/component-basics.md index ba031bf823..75fbed45f9 100644 --- a/src/guide/essentials/component-basics.md +++ b/src/guide/essentials/component-basics.md @@ -298,7 +298,7 @@ Then want to render a component for each one, using `v-for`: -Notice how `v-bind` is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. +Notice how [`v-bind` syntax](/api/built-in-directives#v-bind) (`:title="post.title"`) is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. That's all you need to know about props for now, but once you've finished reading this page and feel comfortable with its content, we recommend coming back later to read the full guide on [Props](/guide/components/props). From 95468bea005e231d1c52287e316c2dff596bf6a4 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:34:09 +0530 Subject: [PATCH 3/3] Update component-basics.md --- src/guide/essentials/component-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/component-basics.md b/src/guide/essentials/component-basics.md index 75fbed45f9..042586d3e5 100644 --- a/src/guide/essentials/component-basics.md +++ b/src/guide/essentials/component-basics.md @@ -298,7 +298,7 @@ Then want to render a component for each one, using `v-for`: -Notice how [`v-bind` syntax](/api/built-in-directives#v-bind) (`:title="post.title"`) is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. +Notice how [`v-bind` syntax](/api/built-in-directives#v-bind) (`:title="post.title"`) is used to pass dynamic prop values. This is especially useful when you don't know the exact content you're going to render ahead of time. That's all you need to know about props for now, but once you've finished reading this page and feel comfortable with its content, we recommend coming back later to read the full guide on [Props](/guide/components/props).