fix(cascader): 修复cascader组件onClickTab事件没有同步activeTab的值导致选择异常的问题

This commit is contained in:
yongli 2023-02-07 17:16:18 +08:00
parent acdf1ad280
commit 92ae4a29c0

View File

@ -193,6 +193,9 @@ VantComponent({
onClickTab(e) {
const { index: tabIndex, title } = e.detail;
this.$emit('click-tab', { title, tabIndex });
this.setData({
activeTab: tabIndex,
});
},
// 选中
onSelect(e) {