下载animate.css并引入项目,

import './css/animate.css'
使用:
<template>
  <div class="box">
    <transition enter-active-class="animated fadeInLeft" leave-active-class="animated fadeOutRight">
      <button @click="decrease" v-show="home.count>0" class="decrease">我是减法</button>
    </transition>
    <div class="num" > {{home.count}} </div>
    <button @click="add" >我是加法</button><br><br>
  </div>
</template>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2022-01-22
  • 2021-10-20
猜你喜欢
  • 2021-07-21
  • 2022-12-23
  • 2021-08-31
  • 2021-12-20
  • 2021-06-08
相关资源
相似解决方案