Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

transition vue

.fade-enter-active, .fade-leave-active {
  transition: opacity 3s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}
Source by vuejs.org #
 
PREVIOUS NEXT
Tagged: #transition #vue
ADD COMMENT
Topic
Name
1+8 =