Skip to content

Commit fee62d1

Browse files
committed
Merge pull request #122 from SERVANT14/patch-1
"convert" vs "converting"
2 parents 875a37a + 087f649 commit fee62d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/guide/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ new Vue({
2929
})
3030
```
3131

32-
The reason for this is that Vue observes data changes by recursively walking the data object and convert existing properties into reactive getters and setters using `Object.defineProperty`. If a property is not present when the instance is created, Vue will not be able to track it.
32+
The reason for this is that Vue observes data changes by recursively walking the data object and converting existing properties into reactive getters and setters using `Object.defineProperty`. If a property is not present when the instance is created, Vue will not be able to track it.
3333

3434
You don't have to set every single nested property in your data though. It is ok to initialize a field as an empty object, and set it to a new object with nested structures later, because Vue will be able to walk the nested properties of this new object and observe them.
3535

0 commit comments

Comments
 (0)