/deep/
样式穿透
<template>
<div class="left-container">
<h3>Left 组件</h3>
<my-count :init="9"></my-count>
</div>
</template>
<script>
export default {}
</script>
<style lang="less" scoped>
.left-container {
padding: 0 20px 20px;
background-color: orange;
min-height: 250px;
flex: 1;
}
h3 {
color: red;
}
// 当使用第三方组件库的时候,如果有修改组件默认样式的需求,需要用到 /deep/
/deep/ h5 {
color: pink;
}
</style>
标签:样式,deep,color,vue2,组件,20px
From: https://www.cnblogs.com/yang-young-young/p/17527409.html