mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
0d95eae0ed
commit
ef1e747869
@ -13,7 +13,7 @@
|
|||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block title="通过名称匹配">
|
<demo-block title="通过名称匹配">
|
||||||
<van-tabs active="a">
|
<van-tabs active="b">
|
||||||
<van-tab
|
<van-tab
|
||||||
wx:for="{{ tabsWithName }}"
|
wx:for="{{ tabsWithName }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
|
@ -173,8 +173,10 @@ VantComponent({
|
|||||||
const matched = children.filter(
|
const matched = children.filter(
|
||||||
(child: TrivialInstance) => child.getComputedName() === name
|
(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) {
|
setCurrentIndex(currentIndex) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user