JS vue监听屏幕宽度

mounted: function() {
			var _this = this
			window.onresize = function(){//须要注意做用域的问题 方法内this是window对象
				let windowWidth=document.body.clientWidth
				if(windowWidth>650){
					_this.isShowBar = false//data赋值,看不懂看我上一篇博客
				}
			}
		},
相关文章
相关标签/搜索