From 25378df1d894546c4b08eb43a58b02b40ab9649b Mon Sep 17 00:00:00 2001 From: Mateus Bellei <34643058+mateusbellei@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:38:59 -0300 Subject: [PATCH] fix(Accordion): improve `items` type (#2487) --- src/runtime/types/accordion.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/accordion.d.ts b/src/runtime/types/accordion.d.ts index 1e4229bd..2139f297 100644 --- a/src/runtime/types/accordion.d.ts +++ b/src/runtime/types/accordion.d.ts @@ -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 }