My setup involves two components that each have child components in a router configuration. Here's an example of how it looks:
{
path: '/admin',
component: AdminMain,
children:[
{
path: '/admin',
component: AdminHome,
name: 'AdminHome'
}
]
},
{
path: '/',
component: Home,
children:[
{
path: '/',
component: Index,
name: 'Index'
}
]
}
I am looking for a way to create separate layouts for these components so their child components inherit the parent components' CSS styles. Is this achievable? Currently, I have to load a CSS file in every component using scoped styles because my CSS conflicts with Vuetify's CSS.