如何在v-carousel中更改点控件的背景颜色?
这是为了证明
data
<v-carousel
hide-controls
:cycle="false"
light
>
<v-carousel-item>
该课程无效
答案 0 :(得分:0)
我发现删除范围属性可以解决问题,因此可以:
<style> /* <-- remove scoped here if you have it*/
.v-carousel__controls{
background: blue !important
}
.v-carousel__controls__item{
color: red !important
}
</style>