diff --git a/docs/3.api/1.components/4.nuxt-link.md b/docs/3.api/1.components/4.nuxt-link.md index 83bbff0950..287d8d94a4 100644 --- a/docs/3.api/1.components/4.nuxt-link.md +++ b/docs/3.api/1.components/4.nuxt-link.md @@ -57,7 +57,13 @@ In this example, we use `` component to link to a website. ## `target` and `rel` Attributes -In this example, we use `` with `target`, `rel`, and `noRel` props. +A `rel` attribute of `noopener noreferrer` is applied by default to absolute links and links that open in new tabs. +- `noopener` solves a [security bug](https://mathiasbynens.github.io/rel-noopener/) in older browsers. +- `noreferrer` improves privacy for your users by not sending the `Referer` header to the linked site. + +These defaults have no negative impact on SEO and are considered [best practice](https://developer.chrome.com/docs/lighthouse/best-practices/external-anchors-use-rel-noopener). + +When you need to overwrite this behavior you can use the `rel` and `noRel` props. ```vue [app.vue]