样式穿透的三种方法
1.使用>>>
.wrapper >>> .swiper-pagination-bullet-active
background: #fff
2.使用 /deep/
<style scoped>
/deep/ .el-input-group__append{
padding: 0 5px;
}
</style>
.wrapper /deep/ .swiper-pagination-bullet-active{
background: #fff;
}
3.使用 ::v-deep
::v-deep .aaa{
***
}