vue监听屏幕宽度

412 阅读1分钟
const that = this; 
window.onresize = () => { 
  return (() => {
    window.screenWidth = document.body.clientWidth; 
    that.screenWidth = window.screenWidth; 
  })
() }