types: include `nuxt-link` target types (#8172)

Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
Benicio Cardozo 2022-10-13 14:51:26 -03:00 committed by GitHub
parent 1beb7d03a1
commit 9fa147dc22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export type NuxtLinkProps = {
custom?: boolean
// Attributes
target?: string | null
target?: '_blank' | '_parent' | '_self' | '_top' | (string & {}) | null
rel?: string | null
noRel?: boolean