本文主要是介绍vue获取屏幕的实时 宽度 / 高度,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
mounted () {const that = this;window.onresize = () => {return (() => {window.screenWidth = document.documentElement.clientWidth; //实时宽度window.screenHeight = document.documentElement.clientHeight; //实时高度console.log(this.screenWidth, this.screenHeight);that.screenWidth = window.screenWidth;that.screenHeight = window.screenHeight;})();};},
获取屏幕的宽度和高度 适用于响应式 用来做判断使用
这篇关于vue获取屏幕的实时 宽度 / 高度的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!