Skip to content

Commit 1d73dc5

Browse files
committed
Merge pull request #225 from danielbaylis/patch-1
Added missing word
2 parents 5f5a15d + 40890f8 commit 1d73dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ When a prop validation fails, Vue will refuse to set the value on the child comp
353353

354354
A child component holds access to its parent component as `this.$parent`. A root Vue instance will be available to all of its descendants as `this.$root`. Each parent component has an array, `this.$children`, which contains all its child components.
355355

356-
Although it's possible to access any instance the parent chain, you should avoid directly relying on parent data in a child component and prefer passing data down explicitly using props. In addition, it is a very bad idea to mutate parent state from a child component, because:
356+
Although it's possible to access any instance in the parent chain, you should avoid directly relying on parent data in a child component and prefer passing data down explicitly using props. In addition, it is a very bad idea to mutate parent state from a child component, because:
357357

358358
1. It makes the parent and child tightly coupled;
359359

0 commit comments

Comments
 (0)