vue单独给组件设置背景色
在创建之前,添加body的style属性,将背景颜色设置为黑色
复制代码
beforeCreate () {
document.querySelector(‘body’).setAttribute(‘style’, ‘background:#000000’)
},
在销毁前,将body的style属性删除。
beforeDestroy () {
document.querySelector(‘body’).removeAttribute(‘style’)
}