安装组件
cnpm i wowjs -S
在main.js引入
animate.css文件直接下载
http://demos.wanjunshijie.com/jizhang/html/style/animate.css
import wow from 'wowjs'
import "./assets/css/animation.css"
Vue.prototype.$wow=wow
使用
<template>
<div id="app">
<div>
<section class="wow slideInLeft " data-wow-duration="1s">12312312</section>
<section class="wow slideInLeft " data-wow-delay="2s">12312312</section>
</div>
</div>
</template>
<script>
export default {
data() {
return { }
},
mounted(){
new this.$wow.WOW().init()
}
}
</script>