[Vuejs]-Simple fade entrance in VueJS with CSS transition

0๐Ÿ‘

.fade-enter-active {
  transition: opacity 1s ease-out;
  transition-delay: 1s;
}
.fade-enter {
  opacity: 0;
}
.fade-enter-to {
  opacity: 1;
}
.fade-move {
  transition: transform 1s;
}

You can just delay the entry.

Leave a comment