vue中在mounted中window.onresize不生效
2021-03-06 04:26
阅读:735
标签:event this 写法 lse 生效 vue his win scree 在vue开发中,因为引用的父组件和子组件都使用了window.onresize以至于一个window.onresize失效。 vue中在mounted中window.onresize不生效 标签:event this 写法 lse 生效 vue his win scree 原文地址:https://www.cnblogs.com/wangweizhang/p/12874679.html
解决方案==>可以采用下面的方式
window.onresize = () => this.screenWidth = window.innerWidth
// 改为以下写法
window.addEventListener(‘resize‘, () => this.screenWidth = window.innerWidth, false)
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:vue中在mounted中window.onresize不生效
文章链接:http://soscw.com/essay/60695.html
文章标题:vue中在mounted中window.onresize不生效
文章链接:http://soscw.com/essay/60695.html
评论
亲,登录后才可以留言!