在vue中监听窗口变化使用:window.onresize. 在mounted里直接使用就可以。
window.onresize = () => {
return (() => {
window.screenWidth = document.body.clientWidth
that.screenWidth = window.screenWidth
})();
};
但是当父子组件同时使用window.onresize就会失效。解决方案:
window.addEventListener('resize', () => this.screenWidth = document.body.clientWidth, false)