update example transition classes

This commit is contained in:
Evan You 2016-12-28 00:29:57 -05:00
parent aa6f7b4cdb
commit 2768b0fe66
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ ul {
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
} }
.v-enter, .v-leave-active { .v-enter, .v-leave-to {
height: 0; height: 0;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;

View File

@ -52,12 +52,12 @@
opacity: 0; opacity: 0;
} }
.modal-leave-active { .modal-leave-to {
opacity: 0; opacity: 0;
} }
.modal-enter .modal-container, .modal-enter .modal-container,
.modal-leave-active .modal-container { .modal-leave-to .modal-container {
-webkit-transform: scale(1.1); -webkit-transform: scale(1.1);
transform: scale(1.1); transform: scale(1.1);
} }