fix(Tabs): fix some error when component init (#2133)

This commit is contained in:
ShuaiKang Zhang 2019-10-10 17:58:50 +08:00 committed by neverland
parent 716c76e900
commit a14ad6e384

View File

@ -96,7 +96,7 @@ VantComponent({
trackStyle: '',
wrapStyle: '',
position: '',
currentIndex: null,
currentIndex: 0,
},
watch: {
@ -239,7 +239,7 @@ VantComponent({
setActiveTab() {
if (!isDef(this.currentName)) {
this.currentName = this.data.active || this.children[0].computedName;
this.currentName = this.data.active || (this.children[0] || {}).computedName;
}
this.children.forEach((item: WechatMiniprogram.Component.TrivialInstance, index: number) => {