From 4d5de6636203a721fafe2167c9fbf25ffe90707b Mon Sep 17 00:00:00 2001 From: Gavin Date: Mon, 4 Dec 2023 20:19:36 +0800 Subject: [PATCH] fix(TextEllipsis): fix missing param for toggle (#12483) --- packages/vant/src/text-ellipsis/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/src/text-ellipsis/types.ts b/packages/vant/src/text-ellipsis/types.ts index 4a08f939b..0927dda66 100644 --- a/packages/vant/src/text-ellipsis/types.ts +++ b/packages/vant/src/text-ellipsis/types.ts @@ -2,7 +2,7 @@ import type { ComponentPublicInstance } from 'vue'; import type { TextEllipsisProps } from './TextEllipsis'; export type TextEllipsisExpose = { - toggle: () => void; + toggle: (expanded?: boolean) => void; }; export type TextEllipsisInstance = ComponentPublicInstance<