vue监听屏幕宽度 麻辣小辣鸡 2022-07-20 218 阅读1分钟 const that = this; window.onresize = () => { return (() => { window.screenWidth = document.body.clientWidth; that.screenWidth = window.screenWidth; })() }