Skip to content

Commit 09836ad

Browse files
vuejs-jp-botkazupon
authored andcommitted
Update transitions.md (vuejs#1364) (vuejs#585)
Fix small mistake.
1 parent fcf5e17 commit 09836ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/v2/guide/transitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ new Vue({
4949

5050
``` css
5151
.fade-enter-active, .fade-leave-active {
52-
transition: opacity .5s
52+
transition: opacity .5s;
5353
}
5454
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
55-
opacity: 0
55+
opacity: 0;
5656
}
5757
```
5858

0 commit comments

Comments
 (0)