8 lines
140 B
Text
8 lines
140 B
Text
![]() |
// Vue transition
|
||
|
|
||
|
.fade-transition {
|
||
|
.transition(opacity @transition-time @ease-in-out);
|
||
|
}
|
||
|
.fade-enter, .fade-leave {
|
||
|
opacity: 0;
|
||
|
}
|