Skip to content

Commit a72db91

Browse files
committed
Merge branch 'next' of github.com:vueComponent/ant-design-vue into next
2 parents c5b6a7c + 20b53a9 commit a72db91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-tabs/src/Tabs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export default defineComponent({
146146
const activeKey = this.state._activeKey;
147147
const children = [];
148148
this.$props.children.forEach(c => {
149-
if (c && !c.disabled && c.disabled !== '') {
149+
if (c && !c.props?.disabled && c.props?.disabled !== '') {
150150
if (next) {
151151
children.push(c);
152152
} else {

0 commit comments

Comments
 (0)