Whether the vant tabs component can change the color of title

Css
May.31,2022

just change the css by yourself. In order not to affect all tabs, you can add a separate class to the tabs, such as order-tabs
, and then change the color

.
.order-tabs .van-tab--active .van-ellipsis {
    color: red
}

<van-tabs
v-model="active"
sticky
title-active-color="-sharp144a9e" // 
color="-sharp144a9e" // 
@click="tabClick">

/ use the custom tab in the Vant tab. The title-active-color can take effect
< van-tabs vMube model = "active" title-active-color= "- sharp33F" >

<van-tab v-for="(item,index) in tabTitles" :key="index" >
    <div slot="title">{{item.name}}</div>
</van-tab>

< / van-tabs >

Menu