vue 子组件监听窗口变化无效,要使用 addEventListener

无效

  mounted () {
    window.onresize = () => {
      console.log('324')
    }
  }

使用 addEventListener有效

  mounted () {
    window.addEventListener('resize', () => {
      console.log('resize')
    })
  }

上一篇:多次resize操作+python


下一篇:vue左右移动div