feat(Tabs): new component (#450)

This commit is contained in:
Benjamin Canac
2023-07-27 16:22:49 +02:00
committed by GitHub
parent 10890e6704
commit 8298b62f21
12 changed files with 684 additions and 0 deletions

View File

@@ -6,4 +6,5 @@ export * from './command-palette'
export * from './dropdown'
export * from './notification'
export * from './popper'
export * from './tabs'
export * from './vertical-navigation'

6
src/runtime/types/tabs.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export interface TabItem {
label: string
slot?: string
disabled?: boolean
content?: string
}