Skip to content

Instantly share code, notes, and snippets.

@manojnaidu619
Created July 15, 2019 17:08
Show Gist options
  • Save manojnaidu619/90779467905185005635ca810b552c8a to your computer and use it in GitHub Desktop.
Save manojnaidu619/90779467905185005635ca810b552c8a to your computer and use it in GitHub Desktop.
Adding animation classes to div in Vue js
<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