fix(nuxt): preserve explicit rel attribute on internal link (#19309)

This commit is contained in:
igayamaguchi 2023-02-27 21:29:57 +09:00 committed by GitHub
parent 3c006b33c8
commit 9e6fa9f7ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,7 +222,8 @@ export function defineNuxtLink (options: NuxtLinkOptions) {
exactActiveClass: props.exactActiveClass || options.exactActiveClass,
replace: props.replace,
ariaCurrentValue: props.ariaCurrentValue,
custom: props.custom
custom: props.custom,
rel: props.rel
},
slots.default
)