Skip to content

Commit 4331ff9

Browse files
amadeannchrisvfritz
authored andcommitted
typo fix (#1703)
1 parent ccb4910 commit 4331ff9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ Since `v-ref` is no longer a directive, but a special attribute, it can also be
644644
<p v-for="item in items" v-bind:ref="'item' + item.id"></p>
645645
```
646646

647-
Previously, `v-el`/`v-ref` combined with `v-for` would produce an array of elements/components, because there was no way to give each item a unique name. You can still achieve this behavior by given each item the same `ref`:
647+
Previously, `v-el`/`v-ref` combined with `v-for` would produce an array of elements/components, because there was no way to give each item a unique name. You can still achieve this behavior by giving each item the same `ref`:
648648

649649
``` html
650650
<p v-for="item in items" ref="items"></p>

0 commit comments

Comments
 (0)