mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
parent
0d95eae0ed
commit
ef1e747869
@ -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"
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user