vue如何取消监听 vue监听页面关闭

主机教程 建站分享 2年前 (2022-11-26) 174次浏览

文章摘要:vue如何取消监听 vue监听页面关闭

在vue中取消监听的方法:1.新建项目,引入vue;2.使用window.addEventListener方法 […]

在vue中取消监听的方法:1.新建项目,引入vue;2.使用window.addEventListener方法创建监听;3.使用window.removeEventListener方法取消监听;

具体步骤如下:

1.首先,新建一个html项目,并在项目中引入vue;

import Vue from 'vue'

2.引入vue后,在项目中使用window.addEventListener方法创建监听;

mounted() {

window.addEventListener("scroll", this.setHeadPosition, true);

},

3.最后,监听创建好后,使用window.removeEventListener方法即可取消监听;

destroyed() {

window.removeEventListener("scroll", this.setHeadPosition, true);

},


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:vue如何取消监听 vue监听页面关闭
文章链接:http://www.7966.org/post/11132.html
转载请注明出处

喜欢 (0)