fix(Link): define rel as any

This commit is contained in:
Benjamin Canac
2024-07-30 12:01:48 +02:00
parent 93ddf1d60b
commit 69f605fa72

View File

@@ -21,7 +21,7 @@ export const nuxtLinkProps = {
required: false
},
rel: {
type: String as PropType<NuxtLinkProps['rel']>,
type: String as PropType<any>,
default: undefined,
required: false
},