Created
July 15, 2019 17:08
-
-
Save manojnaidu619/90779467905185005635ca810b552c8a to your computer and use it in GitHub Desktop.
Adding animation classes to div in Vue js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<transition | |
enter-active-class="animated fadeIn" | |
leave-active-class="animated fadeOut"> | |
<div v-if="show" class="alert alert-success"> | |
<strong>Success!</strong> Indicates a successful or positive action. | |
</div> | |
</transition> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment