Vue过渡配合animate.css库使用

// 下包
yarn add animate

// 引入
import "animate.css"
<transition
            appear
            name="animate__animated animate__bounce"
            // 进入
            enter-active-class="动画名称"
            // 退出
            leave-active-class="动画名称"
>
	<h1>
        Hello
    </h1>
</transition>
posted @ 2022-01-24 05:15  HuangBingQuan  阅读(40)  评论(0编辑  收藏  举报