Skip to content

Commit 2efd0aa

Browse files
committed
Merge pull request vuejs#84 from ryonext/fix_typo_of_component
Fix typo
2 parents 9a78498 + b987b33 commit 2efd0aa

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
@@ -117,7 +117,7 @@ var MyComponent = Vue.extend({
117117
})
118118
```
119119

120-
これに伴う問題は、同じ `data` オブジェクトは `MyComponent` の全てのインスタンス間で共有されるということです!これは最も私達が望んでいないものの可能性があるので、私達は `data` オプションとして新たなオブエジェクトを返す関数を使用する必要があります:
120+
これに伴う問題は、同じ `data` オブジェクトは `MyComponent` の全てのインスタンス間で共有されるということです!これは最も私達が望んでいないものの可能性があるので、私達は `data` オプションとして新たなオブジェクトを返す関数を使用する必要があります:
121121

122122
``` js
123123
var MyComponent = Vue.extend({

0 commit comments

Comments
 (0)