Skip to content

Commit eef29e0

Browse files
Leyth AdanNataliaTepluhina
Leyth Adan
andauthored
fixed missing commas (#1302)
* fixed missing commas * Update src/guide/introduction.md Co-authored-by: Natalia Tepluhina <[email protected]>
1 parent 7a9ad06 commit eef29e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Vue.createApp(AttributeBinding).mount('#bind-attribute')
9696

9797
<common-codepen-snippet title="Attribute dynamic binding" slug="KKpRVvJ" />
9898

99-
Here we're encountering something new. The `v-bind` attribute you're seeing is called a **directive**. Directives are prefixed with `v-` to indicate that they are special attributes provided by Vue, and as you may have guessed, they apply special reactive behavior to the rendered DOM. Here we are basically saying "_keep this element's `title` attribute up-to-date with the `message` property on the current active instance._"
99+
Here we're encountering something new. The `v-bind` attribute you're seeing is called a **directive**. Directives are prefixed with `v-` to indicate that they are special attributes provided by Vue, and as you may have guessed, they apply special reactive behavior to the rendered DOM. Here, we're basically saying "_keep this element's `title` attribute up-to-date with the `message` property on the current active instance._"
100100

101101
## Handling User Input
102102

0 commit comments

Comments
 (0)