Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

types: include nuxt-link target types #8172

Merged
merged 2 commits into from Oct 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/nuxt/src/app/components/nuxt-link.ts
Expand Up @@ -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

Expand Down