fix(Accordion): improve items type (#2487)

This commit is contained in:
Mateus Bellei
2024-10-29 12:38:59 -03:00
committed by GitHub
parent 070d2f89b6
commit 25378df1d8

View File

@@ -3,7 +3,7 @@ import type { Button } from './button'
export interface AccordionItem extends Button {
slot?: string
disabled?: boolean
content?: string
content?: string | string[] | object | object[]
defaultOpen?: boolean
closeOthers?: boolean
}