fix(Tab): fix prop active not work in init (#2395)

fix #2390
This commit is contained in:
rex 2019-11-26 21:33:21 +08:00 committed by GitHub
parent 0d95eae0ed
commit ef1e747869
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@
</demo-block>
<demo-block title="通过名称匹配">
<van-tabs active="a">
<van-tabs active="b">
<van-tab
wx:for="{{ tabsWithName }}"
wx:key="index"

View File

@ -173,8 +173,10 @@ VantComponent({
const matched = children.filter(
(child: TrivialInstance) => child.getComputedName() === name
);
const defaultIndex = (children[0] || {}).index || 0;
this.setCurrentIndex(matched.length ? matched[0].index : defaultIndex);
if (matched.length) {
this.setCurrentIndex(matched[0].index);
}
},
setCurrentIndex(currentIndex) {