Merge pull request #6299 from zmj97/patch-3

fix: #6279
This commit is contained in:
debugIsFalse 2019-09-24 11:55:03 +08:00 committed by GitHub
commit b143ea52eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -217,7 +217,7 @@
if (item.tab === this.name) { if (item.tab === this.name) {
TabPanes.push(item); TabPanes.push(item);
} }
} else { } else if (this.$children.indexOf(item) !== -1) {
TabPanes.push(item); TabPanes.push(item);
} }
}); });