vue监听屏幕宽度

218 阅读1分钟

const that = this; window.onresize = () => { return (() => { window.screenWidth = document.body.clientWidth; that.screenWidth = window.screenWidth; })() }