Skip to content

Commit 60a0dcb

Browse files
jkshapirochrisvfritz
authored andcommitted
Eliminate garden path "just use a method where..." (vuejs#798)
* Eliminate garden path "just use a method where..." * Update list.md
1 parent 726691d commit 60a0dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ computed: {
449449
}
450450
```
451451

452-
Alternatively, you can also just use a method where computed properties are not feasible (e.g. inside nested `v-for` loops):
452+
In situations where computed properties are not feasible (e.g. inside nested `v-for` loops), you can just use a method:
453453

454454
``` html
455455
<li v-for="n in even(numbers)">{{ n }}</li>

0 commit comments

Comments
 (0)