vue中window.onresize无效的解决方案

本来我以前都是这样写的

window.onresize = () => {
      return () => {
        this.windowWidth = ((document.documentElement.clientWidth - 40) * 2) / 3
      }
    }

但是这次发现行不通了,查了一下,改成下面写法居然就ok,虽然没搞懂原因,但是先记录一下

window.addEventListener(
      'resize',
      () =>
        (this.windowWidth =
          ((document.documentElement.clientWidth - 40) * 2) / 3)
    )

你可能感兴趣的:(vue中window.onresize无效的解决方案)