mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Tabbar: change event (#1571)
This commit is contained in:
parent
10ed66cbe5
commit
806df7802f
@ -140,7 +140,7 @@ Field 默认支持 Input 标签所有的原生事件,如 `focus`、`blur`、`k
|
||||
|
||||
| 事件 | 说明 | 回调参数 |
|
||||
|-----------|-----------|-----------|
|
||||
| click-icon | 点击尾部图标时触发 | -
|
||||
| click-icon | 点击尾部图标时触发 | - |
|
||||
|
||||
### 方法
|
||||
|
||||
|
@ -44,6 +44,7 @@ export default create({
|
||||
items() {
|
||||
this.setActiveItem();
|
||||
},
|
||||
|
||||
value() {
|
||||
this.setActiveItem();
|
||||
}
|
||||
@ -55,9 +56,12 @@ export default create({
|
||||
item.active = index === this.value;
|
||||
});
|
||||
},
|
||||
|
||||
onChange(active) {
|
||||
this.$emit('input', active);
|
||||
this.$emit('change', active);
|
||||
if (active !== this.value) {
|
||||
this.$emit('input', active);
|
||||
this.$emit('change', active);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user