标签:event this 写法 lse 生效 vue his win scree
在vue开发中,因为引用的父组件和子组件都使用了window.onresize以至于一个window.onresize失效。
解决方案==>可以采用下面的方式
window.onresize = () => this.screenWidth = window.innerWidth // 改为以下写法 window.addEventListener(‘resize‘, () => this.screenWidth = window.innerWidth, false)
vue中在mounted中window.onresize不生效
标签:event this 写法 lse 生效 vue his win scree
原文地址:https://www.cnblogs.com/wangweizhang/p/12874679.html