Skip to content

Commit ff09495

Browse files
committed
Merge pull request #205 from SERVANT14/patch-5
Tiny grammar fix
2 parents 428cbe7 + 384f108 commit ff09495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var exampleVM2 = new Vue({
8888
</script>
8989
{% endraw %}
9090

91-
Here we are encountering something new. The `v-if` attribute you are seeing are called **Directives**. Directives are prefixed with `v-` to indicate that they are special attributes provided by Vue.js, and as you may have guessed, they apply special reactive behavior to the rendered DOM. Go ahead and set `exampleVM2.greeting` to `false` in the console. You should see the "Hello!" message disappear.
91+
Here we are encountering something new. The `v-if` attribute you are seeing is called a **Directive**. Directives are prefixed with `v-` to indicate that they are special attributes provided by Vue.js, and as you may have guessed, they apply special reactive behavior to the rendered DOM. Go ahead and set `exampleVM2.greeting` to `false` in the console. You should see the "Hello!" message disappear.
9292

9393
This second example demonstrates that not only can we bind DOM text to the data, we can also bind the **structure** of the DOM to the data. Moreover, Vue.js also provides a powerful transition effect system that can automatically apply transition effects when elements are inserted/removed by Vue.
9494

0 commit comments

Comments
 (0)