We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4734227 commit c4932e2Copy full SHA for c4932e2
ko-KR/src/guide/essentials/list.md
@@ -298,7 +298,7 @@ DOM Node의 위치가 변경되면 DOM Tree구조가 변경 되었기 때문에
298
컴포넌트에 `v-for`를 직접 사용할 수 있습니다(`key` 사용을 잊지 마세요):
299
300
```vue-html
301
-<MyComponent v-for="item in items" :key="item.id"></MyComponent>
+<MyComponent v-for="item in items" :key="item.id" />
302
```
303
304
그러나 컴포넌트에는 자체적으로 구분된 범위가 있기 때문에 컴포넌트에 데이터를 자동으로 전달하지 않습니다.
@@ -310,7 +310,7 @@ DOM Node의 위치가 변경되면 DOM Tree구조가 변경 되었기 때문에
310
:item="item"
311
:index="index"
312
:key="item.id"
313
-></MyComponent>
+/>
314
315
316
컴포넌트에 `item`이 자동으로 전달되지 않는 이유는, 그렇지 않으면`v-for`를 사용해야만 컴포넌트 사용이 가능하도록 의존관계가 되기 때문입니다.
0 commit comments