From 4cde571e387775a9b12759f6f8c99117c84cbcff Mon Sep 17 00:00:00 2001 From: Sandro Circi Date: Wed, 27 Nov 2024 09:47:39 +0100 Subject: [PATCH] fix(Link): `exactQuery` prop type (#2781) --- src/runtime/types/link.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/link.d.ts b/src/runtime/types/link.d.ts index 0e1b44d1..bb3304f3 100644 --- a/src/runtime/types/link.d.ts +++ b/src/runtime/types/link.d.ts @@ -6,7 +6,7 @@ export interface Link extends NuxtLinkProps { disabled?: boolean active?: boolean exact?: boolean - exactQuery?: boolean + exactQuery?: boolean | 'partial' exactHash?: boolean inactiveClass?: string }