From 1a1a5c07c81aa79b54b7ddd889fdd3b2c59d304d Mon Sep 17 00:00:00 2001 From: inottn Date: Thu, 4 Jul 2024 05:09:56 +0800 Subject: [PATCH] types(Notify): add missing teleport type (#12985) --- packages/vant/src/notify/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/vant/src/notify/types.ts b/packages/vant/src/notify/types.ts index e8bebd8ac..805e5ca7e 100644 --- a/packages/vant/src/notify/types.ts +++ b/packages/vant/src/notify/types.ts @@ -1,3 +1,4 @@ +import type { TeleportProps } from 'vue'; import type { Numeric } from '../utils'; export type NotifyMessage = Numeric; @@ -16,6 +17,7 @@ export type NotifyOptions = { className?: unknown; background?: string; lockScroll?: boolean; + teleport?: TeleportProps['to']; onClick?: (event: MouseEvent) => void; onClose?: () => void; onOpened?: () => void;