vueVue+ElementUI

vue中在mounted中window.onresize不生效

2020-04-30  本文已影响0人  怪兽别跑biubiubi

在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)
上一篇下一篇

猜你喜欢

热点阅读