<div id="app" class="app">
  <button @click="show = !show">
    Toggle
  </button>
  
  <transition 
     enter-active-class="animate__animated animate__bounceIn"
     leave-active-class="animate__animated animate__bounceOut">
    <p v-if="show">hello</p>
  </transition>
</div>
html, body {
  display: grid;
  justify-content: center;
  align-content: center;
  height: 100%;
  
  font-family: sans-serif;
  font-size: 1rem;
}

.app {
  display: grid;
  grid-template-rows: 1fr;
  align-content: center;
  justify-items: center;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
const app = Vue.createApp({
   data: function () {
    return {
      show: true
    }
  }
})

const vm = app.mount('#app')

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css

External JavaScript

  1. https://unpkg.com/vue@next