vue.js window.removeEventListene

2020-09-25  本文已影响0人  Talentisan
beforeDestroy() { //在组件生命周期结束的时候销毁。
    window.removeEventListener('scroll', this.scrollhandle);
},
methods: {
    listenerAction() { //开始监听
        window.addEventListener('scroll', this.scrollhandle);
    }
},
scrollhandle(event) {
    var scrollY = event.path[1].scrollY;
},
上一篇 下一篇

猜你喜欢

热点阅读