Skip to content

Commit 757ba5f

Browse files
committed
Merge pull request #139 from vuejs-jp/fix/transitions
fix staggering example
2 parents f3f42c9 + 19e6d38 commit 757ba5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/guide/transitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ Then you can use it with the `transition` attribute, same deal:
361361
It's possible to create staggering transitions when using `transition` with `v-for`. You can do this either by adding a `stagger`, `enter-stagger` or `leave-stagger` attribute to your transitioned element:
362362

363363
``` html
364-
<div v-repeat="list" transition stagger="100"></div>
364+
<div v-for="list" transition stagger="100"></div>
365365
```
366366

367367
Or, you can provide a `stagger`, `enterStagger` or `leaveStagger` hook for finer-grained control:

0 commit comments

Comments
 (0)