Changing body styles in vue router

前端 未结 7 1422
滥情空心
滥情空心 2021-02-01 18:27

I\'m using Vue router with two pages:

let routes = [
    {
        path: \'/\',
        component: require(\'./components/HomeView.vue\')
    },
    {
        pa         


        
7条回答
  •  一整个雨季
    2021-02-01 19:07

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

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

    In the

提交回复
热议问题