Changing body styles in vue router

前端 未结 7 1574
滥情空心
滥情空心 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:21

    You can use scoped attribute in the style element. Then the style will be limited only to that vue file.

    HomeView.vue:

    
    
    
    
    
    

    IntroView.vue:

    
    
    
    
    
    

提交回复
热议问题