Notes icon indicating copy to clipboard operation
Notes copied to clipboard

vue-loader深度作用选择器

Open any86 opened this issue 7 years ago • 0 comments

因为用了scope, 那么子组件是没法集成父组件的样式的, 但是最近发现, 如果你希望 scoped 样式中的一个选择器能够作用得“更深”,例如影响子组件,你可以使用 >>> 操作符:

<style scoped>
.a >>> .b { /* ... */ }
</style>

any86 avatar Dec 02 '17 06:12 any86