欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue项目——vue中使用animate.css

程序员文章站 2022-03-16 18:57:04
...

1.安装

npm install animate.css --save

2.引入使用

2.1. 全局引入使用

import animate from 'animate.css'
Vue.use(animate)

2.2.局部引入使用(比较推荐这种方式)

<style lang="scss" scoped>
   @import '../../node_modules/animate.css/animate.css';
</style>

3.应用(页面中使用)

vue项目——vue中使用animate.css

相关标签: animate.css vue