mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Cascader): support active-color prop
This commit is contained in:
parent
5d2bd8f6df
commit
3f429142ac
@ -108,6 +108,7 @@ export default createComponent({
|
||||
return (
|
||||
<li
|
||||
class={bem('option', { selected: isSelected })}
|
||||
style={{ color: isSelected ? this.activeColor : null }}
|
||||
onClick={() => {
|
||||
this.onSelect(option, tabIndex);
|
||||
}}
|
||||
@ -125,7 +126,13 @@ export default createComponent({
|
||||
|
||||
renderTabs() {
|
||||
return (
|
||||
<Tabs vModel={this.activeTab} animated swipeable class={bem('tabs')}>
|
||||
<Tabs
|
||||
vModel={this.activeTab}
|
||||
animated
|
||||
swipeable
|
||||
class={bem('tabs')}
|
||||
color={this.activeColor}
|
||||
>
|
||||
{this.tabs.map((item, tabIndex) => (
|
||||
<Tab
|
||||
title={item.title}
|
||||
|
@ -59,7 +59,6 @@
|
||||
}
|
||||
|
||||
&__selected-icon {
|
||||
color: @red;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user