Skip to content

Commit a1866a1

Browse files
authored
Merge pull request #447 from Efficy/main
Fix: Tabs was completely broken
2 parents 00c0246 + 6512d09 commit a1866a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/BTabs/BTabs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const getTabs = (slots: any): any[] => {
238238
}
239239
return arr
240240
}, [])
241-
.filter((child: any) => child.type?.name === 'BTab')
241+
.filter((child: any) => child.type?.__name === 'BTab')
242242
}
243243
244244
activateTab(_tabIndex.value)

0 commit comments

Comments
 (0)