Skip to content

Commit

Permalink
docs: explicitly specify context around v-bind (#2770)
Browse files Browse the repository at this point in the history
This reverts commit ccf052d.
  • Loading branch information
brc-dd committed Mar 27, 2024
1 parent d01c5b3 commit ca0a18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/essentials/component-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ Then want to render a component for each one, using `v-for`:

</div>

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` 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).

Expand Down

0 comments on commit ca0a18c

Please sign in to comment.