From 47cdc2e1d8cd9803ebc954ccae110d62b9a08779 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Wed, 16 Apr 2025 17:15:13 +0300 Subject: [PATCH] fix(Link): proxy `download` property (#3879) --- src/runtime/utils/link.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/utils/link.ts b/src/runtime/utils/link.ts index 77065e7e..6678c1cf 100644 --- a/src/runtime/utils/link.ts +++ b/src/runtime/utils/link.ts @@ -10,7 +10,7 @@ export function pickLinkProps(link: LinkProps & { [key: string]: any }) { const propsToInclude = [ 'active', 'activeClass', 'ariaCurrentValue', 'as', 'disabled', 'exact', 'exactActiveClass', 'exactHash', 'exactQuery', 'external', - 'href', 'inactiveClass', 'noPrefetch', 'noRel', 'prefetch', + 'href', 'download', 'inactiveClass', 'noPrefetch', 'noRel', 'prefetch', 'prefetchedClass', 'rel', 'replace', 'target', 'to', 'type', 'title', 'onClick', ...ariaKeys,