0๐
โ
I think the only way to make a style intended for child components only, while not defining a selector for the parent, is simply to define this style in the child component.
Cordially!
๐คCharles DOUKOURE
7๐
::v-deep
is the equivalent that wonโt upset VSCode linter:
<style scoped>
::v-deep .b {
...
}
</style>
๐คgss
Source:stackexchange.com