diff --git a/docs/content/2.guide/2.features/4.head-management.md b/docs/content/2.guide/2.features/4.head-management.md index a8e23ff3a5e..7cba23c8f94 100644 --- a/docs/content/2.guide/2.features/4.head-management.md +++ b/docs/content/2.guide/2.features/4.head-management.md @@ -81,7 +81,7 @@ const title = ref('Hello World') ## Example: usage with definePageMeta -You can use `definePageMeta` along with `useHead` to set metadata based on the current route. +Within your `pages/` directory, you can use `definePageMeta` along with `useHead` to set metadata based on the current route. For example, you can first set the current page title (this is extracted at build time via a macro, so it can't be set dynamically): @@ -106,3 +106,5 @@ useHead({ ``` :LinkExample{link="/examples/composables/use-head"} + +:ReadMore{link="/guide/directory-structure/pages/#page-metadata"}