在vue-cli 中使用wowjs

2018-11-28  本文已影响0人  林遇66
在vue-cli 中使用wowjs
npm install wowjs --save
import {WOW} from 'wowjs'
import 'animate.css'
...
//页面加载完成
mounted:{
    var options={};
    var wow=new WOW(options)
}
...

MutationObserver is not supported by your browser.

WOW.js cannot detect dom mutations, please call .sync() after loading new content.

只需更改options即可

var options={
    //默认为true
    live:false
}
上一篇 下一篇

猜你喜欢

热点阅读