首页 > 技术文章 > VueJs 监听 window.resize 方法---窗口变化

liuyjui 2021-11-30 10:39 原文

mounted() {
        let _this = this;
        window.onresize = ()=>{
            return (()=>{
                this.vscreen.height=document.body.clientHeight+'px'
            })()
        }
}
 
给图片设置成屏幕高度:
<div :style="vscreen"></div>
data() {
    return {
        vscreen: {
            height: '',
          }
    }
},
created() {
   this.vscreen.height=document.body.clientHeight+'px'
},

 

推荐阅读