vue 单独页面body css

我使用的方式是用js来设置

代码:

export default{
    beforeCreate: function() {
        document.getElementsByTagName("body")[0].setAttribute("style","background-color:white");
    },
    data(){
        return{
            msg:'hello vue'
        }
    }
}
原文地址:https://www.cnblogs.com/dengxiaolei/p/7596279.html