问题描述:在大小屏幕切换时页面宽高不能自动变化,需要手动刷新一下才行
在xx.VUE中进行配置
mounted() {
var _this = this;
window.onresize = function(){ // 定义窗口大小变更通知事件
_this.screenHeight = document.documentElement.clientHeight; //窗口宽度
};
},
问题描述:在大小屏幕切换时页面宽高不能自动变化,需要手动刷新一下才行
在xx.VUE中进行配置
mounted() {
var _this = this;
window.onresize = function(){ // 定义窗口大小变更通知事件
_this.screenHeight = document.documentElement.clientHeight; //窗口宽度
};
},