I have two components that they have a childs in router like this:
{
path: '/admin',
component: AdminMain,
children:[
{
path: '/admin',
component: AdminHome,
name: 'AdminHome'
}
]
},
{
path: '/',
component: Home,
children:[
{
path: '/',
component: Index,
name: 'Index'
}
]
}
I want to do two separate layout for these components so their childs inherit parents css. It is possible ? At the moment I load css file in every component with scoped because my css file conflict with vuetify css.