0
点赞
收藏
分享

微信扫一扫

vue 获取屏幕宽度尺寸

分湖芝蘭 2022-06-30 阅读 115
mounted() {
const that = this
window.onresize = () => {
return (() => {
window.screenWidth = document.body.clientWidth
that.screenWidth = window.screenWidth
console.log(that.screenWidth)
})()
}
}



举报

相关推荐

0 条评论