vue 获取屏幕宽度尺寸

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

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

发布了135 篇原创文章 · 获赞 88 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/weixin_42981560/article/details/97375340