1.安裝:
1 npm install animate.css --save
2.引入及使用:
//main.js中 import animated from 'animate.css' Vue.use(animated)
3.在vue文件中使用:
1 <div class="ty"> 2 <!-- 直接使用animated中的動畫class名,注意:必須使用animated這個class名,否則動畫會無效 --> 3 <div class="box animated bounceInDown"></div> 4 </div>