fix(Link): exactQuery prop type (#2781)

This commit is contained in:
Sandro Circi
2024-11-27 09:47:39 +01:00
committed by GitHub
parent 023497d144
commit 4cde571e38

View File

@@ -6,7 +6,7 @@ export interface Link extends NuxtLinkProps {
disabled?: boolean
active?: boolean
exact?: boolean
exactQuery?: boolean
exactQuery?: boolean | 'partial'
exactHash?: boolean
inactiveClass?: string
}