Skip to content

Commit 50ed801

Browse files
kbrshkazupon
authored andcommitted
fix typo "exists" => "exist" (#738)
1 parent 1777254 commit 50ed801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/list.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ new Vue({
331331

332332
### `v-for` with `v-if`
333333

334-
When they exists on the same node, `v-for` has a higher priority than `v-if`. That means the `v-if` will be run on each iteration of the loop separately. This is very useful when you want to render nodes for only _some_ items, like below:
334+
When they exist on the same node, `v-for` has a higher priority than `v-if`. That means the `v-if` will be run on each iteration of the loop separately. This is very useful when you want to render nodes for only _some_ items, like below:
335335

336336
``` html
337337
<li v-for="todo in todos" v-if="!todo.isComplete">

0 commit comments

Comments
 (0)