这个我在根App.vue中加入的
mounted() {
//监听窗口大小变化
window.onresize = () => {
return (() => {
this.screenWidth = document.body.clientWidth;
this.screenHeight = document.body.clientHeight;
})();
};
}
然后可以通过事件总线传递窗口变化的消息给其他组件