vue 为不同页面的body设置不同背景色
2019-10-14 本文已影响0人
懿小诺
利用组件的路由实现:
具体如下:

```
beforeRouteEnter (to, from, next) {
// ...
window.document.body.style.backgroundColor = '#EBEBEB';
next();
},
beforeRouteLeave (to, from, next) {
// ...
window.document.body.style.backgroundColor = '';
next();
},
```