feat: add more default attributes to the rel attribute in link mode
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Dominik Pschenitschni 2022-02-06 22:34:25 +01:00
parent cb381e2ce9
commit 161ae6ec64
Signed by: dpschen
GPG Key ID: B257AC0149F43A77

View File

@ -69,10 +69,10 @@ watchEffect(() => {
} }
// if there is a href we assume the user wants an external link via a link element // if there is a href we assume the user wants an external link via a link element
// we also set the attribute rel to "noopener" but make it possible to overwrite this by the user. // we also set a predefined value for the attribute rel, but make it possible to overwrite this by the user.
if ('href' in attrs) { if ('href' in attrs) {
nodeName = 'a' nodeName = 'a'
bindings = {rel: 'noopener'} bindings = {rel: 'noreferrer noopener nofollow'}
} }
componentNodeName.value = nodeName componentNodeName.value = nodeName