正常情况下,单页的css都会加上 scoped 属性,这样css只对当前页面生效,外层修改无效;
推荐使用如下方法设置:
在 mounted方法中添加如下代码:
//body
document.body.style.backgroundColor="#ffffff";
//#app
document.querySelector('#app').setAttribute('style', 'background:#fff')
正常情况下,单页的css都会加上 scoped 属性,这样css只对当前页面生效,外层修改无效;
推荐使用如下方法设置:
在 mounted方法中添加如下代码:
//body
document.body.style.backgroundColor="#ffffff";
//#app
document.querySelector('#app').setAttribute('style', 'background:#fff')