承接国内外服务器租用托管、定制开发、网站代运营、网站seo优化托管接单、网站代更新,新老站点皆可!!咨询QQ:3787320601
当前位置:首页  >  互联网圈  >  vue怎么获取屏幕的宽度

vue怎么获取屏幕的宽度

管理员 2023-03-24 08:12:12 互联网圈 102 ℃ 0 评论 1382字 收藏

vue怎样获得屏幕的宽度

在vue中获得屏幕宽度的方法有:1.使用document.documentElement方法获得;2.在watch中实时监听;3.使用mounted函数获得;

vue如何获取屏幕的宽度

具体方法以下:

1.使用document.documentElement方法获得屏幕的宽高

windowWidth: document.documentElement.clientWidth, //获得屏幕宽度

windowHeight: document.documentElement.clientHeight, //获得屏幕高度

2.在watch中实时监听屏幕宽高

watch: {

windowHeight (val) {

let that = this;

console.log("实时屏幕高度:",val, that.windowHeight );

},

windowWidth (val) {

let that = this;

console.log("实时屏幕宽度:",val, that.windowHeight );

}

},

3.使用mounted函数获得屏幕宽高

mounted() {

var that = this;

window.onresize = () => {

return (() => {

window.fullHeight = document.documentElement.clientHeight;

window.fullWidth = document.documentElement.clientWidth;

that.windowHeight = window.fullHeight; //获得屏幕高度

that.windowWidth = window.fullWidth; //获得屏幕宽度

})()

};

},

文章来源:丸子建站

文章标题:vue怎么获取屏幕的宽度

https://www.wanzijz.com/view/2845.html

TAG: vue

相关文章

Related articles

X

截屏,微信识别二维码

微信号:weimawl

(点击微信号复制,添加好友)

打开微信