且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在Vue Router中更改身体样式

更新时间:2023-02-01 18:21:51

我使用生命周期挂钩 beforeCreate 和全局样式表.在 global.css 中:

I got it working with the lifecycle hook beforeCreate and a global stylesheet. In global.css:

body.home {
    background: red;
}
body.intro {
    background: pink;
}

HomeView.vue < script> 部分中:

export default {
    beforeCreate: function() {
        document.body.className = 'home';
    }
}

IntroView.vue 中的类似.