JS vue監聽屏幕寬度

mounted: function() {
			var _this = this
			window.onresize = function(){//須要注意做用域的問題 方法內this是window對象
				let windowWidth=document.body.clientWidth
				if(windowWidth>650){
					_this.isShowBar = false//data賦值,看不懂看我上一篇博客
				}
			}
		},
相關文章
相關標籤/搜索