Merge pull request #5219 from muzhichu/hotfix/cascader-tabclick

fix(cascader): 修复cascader组件onClickTab事件没有同步activeTab的值导致选择异常的问题
This commit is contained in:
landluck 2023-02-12 16:51:58 +08:00 committed by GitHub
commit c7f2f45430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) {