From 581b470cc79c2315bb2d56e02a7c134a7861c616 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 9 May 2024 11:38:39 +0200 Subject: [PATCH] fix(Link): typo in `exactHash` type Resolves #1767 --- 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 d39f5f2afe..0e1b44d142 100644 --- a/src/runtime/types/link.d.ts +++ b/src/runtime/types/link.d.ts @@ -7,6 +7,6 @@ export interface Link extends NuxtLinkProps { active?: boolean exact?: boolean exactQuery?: boolean - exactMatch?: boolean + exactHash?: boolean inactiveClass?: string }