第一种
通过mounted钩子函数动态设置背景色
mounted(){ document.body.style.backgroundColor="#ffffff"; }
第二种
通过最外层盒子给他class设置,让最外层盒子固定定位进行设置
#app{ position: absolute; height: 100%; width: 100%; top:0; left: 0; overflow-y: auto; background-color: #fff;//背景色为白色 }
第三种
通过路由导航守卫进行设置
//进入路由时 beforeRouteEnter(to,from,next){ window.document.body.style.backgroundColor='#fff' } //离开时 beforeRouteLeave(to,from,next){ window.document.body.style.backgroundColor='' }
第四种
脱离文档流解决方案
#app{ background-color:'#fff'; height: 100%; position: fixed; width: 100%; }