-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use transition with vue-js-popover? #39
Comments
@DenniLa2, it looks like there aren't any styles to perform the <style scoped>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.7s;
}
.fade-enter,
.fade-leave-to {
opacity: 0;
}
</style> |
For future readers, in your template you should add a single class to
Later, prepend that same class to Vue transition classes to apply the animation. So, for example, a
|
Thank you, that was not at all clear from the documentation. |
In my example transitions don`t work =(
codesandbox
Where can i mistake or what can I write to work my example? Thanks!
The text was updated successfully, but these errors were encountered: