解决scoped下的css无法变更子组件样式,通过深度选择器

无效:
<style scoped>
    .parent.child { /* ... */ }
</style>


有效:
<style scoped>
    .parent >>> .child { /* ... */ }
</style>

猜你喜欢

转载自blog.csdn.net/u013595395/article/details/102929605