1.打开浏览器搜索npm
2. 点击进入后在搜索框输入animate,点击提示的第一个
3.点击图示位置
4.安装库
npm install animate.css
5.引入
import 'animate.css'
6.使用(name是固定的)
<transition-group
appear
name="animate__animated animate__bounce"
enter-active-class="animate__swing"
leave-active-class="animate__zoomOut"
>
<h1 v-show="!isShow" key="1">Hello!</h1>
<h1 v-show="isShow" key="2">zhangsan!</h1>
</transition-group>