美文网首页
Vue 获取屏幕宽度、高度

Vue 获取屏幕宽度、高度

作者: 2359634711 | 来源:发表于2019-02-19 22:10 被阅读0次

Vue 获取屏幕宽度、高度

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

相关文章

网友评论

      本文标题:Vue 获取屏幕宽度、高度

      本文链接:https://www.haomeiwen.com/subject/jgjqyqtx.html