vue设置不同 页面的 body样式

vue 设置不同 页面的 body 样式

由于 vue 是单页面应用,所有想要不同页面不同背景色,只能可以组件中动态设置

方法一 (推荐)
  • 使用组件独享路由钩子来设置   当前 path 下页面的  body 样式
1
2
3
4
5
6
7
8
9
10
11
12
//组件实例中
beforeRouteEnter (to, from, next) {
// 添加背景色,此钩子无法获取实例this
document.querySelector('body').setAttribute('style', 'background-color:#F4F4F4')
next()
}

beforeRouteLeave (to, from, next) {
// 去除背景色
document.querySelector('body').setAttribute('style', '')
next()
}
方法二
  • 在组件生命周期中设置
1
2
3
4
5
6
beforeCreate () {
document.querySelector('body').setAttribute('style','background-color:rgb(245,245,245)')
},
beforeDestroy () {
document.querySelector('body').setAttribute('style', "background-color:''")
}

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!