微信扫一扫看面试题

关注面试题库

vue 获取屏幕宽度尺寸

 mounted() {
    const that = this
    window.onresize = () => {
      return (() => {
        window.screenWidth = document.body.clientWidth
        that.screenWidth = window.screenWidth
        console.log(that.screenWidth)
      })()
    }
  }
  

在这里插入图片描述
在这里插入图片描述

posted @ 2022-07-23 10:03  web前端面试小助手  阅读(812)  评论(0)    收藏  举报