zl程序教程

您现在的位置是:首页 >  前端

当前栏目

新版 animate.css 在vue中的正确使用

VueCSS 正确 新版 animate 使用
2023-09-27 14:26:02 时间

网上有很多vue中引入animate.css的教程,但是都是旧版的不生效,新版的animate.css的用法如下:

npm i animate.css -D
// main.js
import animate from 'animate.css'
Vue.use(animate)
<!-- template中使用 -->
<div class="animate__animated animate__bounce animate__delay-2s">Example</div>