浏览窗口大小变化,页面刷新

vue

mounted(){
	window.onresize = () => {
     // 执行重新刷新布局的操作
     this.$router.go() //  重新页面加载
   }
}

html

window.addEventListener('resize', function() {
   location.reload(); // 重载页面
});

你可能感兴趣的:(案例,vue,监听页面重新加载)