赞
踩
在app.vue中的style设置
page {
background-color: #f4f3f8 !important;
}
页面中的style加入scoped属性,page设置的属性不生效。所以可单独开辟一个style样式不加scoped来设置背景色
<style lang="scss">
page {
background-color: #f4f3f8 !important;
}
</style>
<style lang="scss" scoped>
...其他样式
</style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。