diff --git a/docs/content/3.components/breadcrumb.md b/docs/content/3.components/breadcrumb.md index 03050f3d..c3e50779 100644 --- a/docs/content/3.components/breadcrumb.md +++ b/docs/content/3.components/breadcrumb.md @@ -15,7 +15,7 @@ Use the `items` prop as an array of objects with the following properties: - `avatar?: AvatarProps`{lang="ts-type"} - [`slot?: string`{lang="ts-type"}](#with-custom-slot) -You can also pass any property from [NuxtLink](https://nuxt.com/docs/api/components/nuxt-link#props) component such as `to`, `target`, etc. +You can also pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc. ::component-code --- diff --git a/docs/content/3.components/button.md b/docs/content/3.components/button.md index a8f92c56..d1e3a4e7 100644 --- a/docs/content/3.components/button.md +++ b/docs/content/3.components/button.md @@ -30,7 +30,7 @@ props: ### Link -You can pass any property from [NuxtLink](https://nuxt.com/docs/api/components/nuxt-link#props) component such as `to`, `target`, etc. +You can pass any property from the [Link](/components/link#props) component such as `to`, `target`, etc. ::component-code --- diff --git a/docs/content/3.components/link.md b/docs/content/3.components/link.md index 6553d55c..e553c4fe 100644 --- a/docs/content/3.components/link.md +++ b/docs/content/3.components/link.md @@ -8,7 +8,7 @@ links: ## Usage -The Link component is a wrapper around [``](https://nuxt.com/docs/api/components/nuxt-link) through the [`custom`](https://router.vuejs.org/api/interfaces/RouterLinkProps.html#Properties-custom) prop that provides a few extra props: +The Link component is a wrapper around [``](https://nuxt.com/docs/api/components/nuxt-link) using the [`custom`](https://router.vuejs.org/api/interfaces/RouterLinkProps.html#Properties-custom) prop. It provides a few extra props: - `inactive-class` prop to set a class when the link is inactive, `active-class` is used when active. - `exact` prop to style with `active-class` when the link is active and the route is exactly the same as the current route.