mounted() {
const that = this
window.onresize = () => {
return (() => {
window.screenWidth = document.body.clientWidth
that.screenWidth = window.screenWidth
console.log(that.screenWidth)
})()
}
}
vue 获取屏幕宽度尺寸
阅读 141
2022-06-30
mounted() {
const that = this
window.onresize = () => {
return (() => {
window.screenWidth = document.body.clientWidth
that.screenWidth = window.screenWidth
console.log(that.screenWidth)
})()
}
}
相关推荐
精彩评论(0)