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.
- [Vuejs]-Vue / Vuetify: get dimensions of v-flex
- [Vuejs]-Manipulate data in vuejs and post it in input field
Source:stackexchange.com