注:

1. window.addEventListener,window.removeEventListener第3参数需为true,否则不生效。

2. 组件销毁需移出监听removeEventListener,否则影响全局。

  mounted() {
    console.log('mounted')
    window.addEventListener('scroll', this.onScrollFunc, true)
  },
  beforeUnmount() {
    console.log('beforeUnmount')
    window.removeEventListener('scroll', this.onScrollFunc, true);
  },
  unmounted() {
    console.log('unmount')
    window.removeEventListener('scroll', this.onScrollFunc, true);
  },
  methods: {
    onScrollFunc() {
      // 执行函数
    }
  }

Logo

前往低代码交流专区

更多推荐