mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
1a39eff502
Co-authored-by: Dan Pastori <dan@521dimensions.com> Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
2.5 KiB
2.5 KiB
Meta Tags
Nuxt 3 provides several different ways to manage your meta tags.
- Through your
nuxt.config
. - Through the
useMeta
composable - Through global meta components
You can customize title
, base
, script
, style
, meta
, link
, htmlAttrs
and bodyAttrs
.
::alert{icon=📦}
Nuxt currently uses vueuse/head
to manage your meta tags, but implementation details may change.
::
Migration
- In your
nuxt.config
, renamehead
tometa
. Consider moving this shared meta configuration into yourapp.vue
instead. (Note that objects no longer have ahid
key for deduplication.) - In your components, rename your
head
option tometa
. If you need to access the component state, you should migrate to usinguseMeta
. You might also consider using the built-in meta-components.
Example: useMeta
::code-group
<script>
export default {
data: () => ({
title: 'My App',
description: 'My App Description'
})
head () {
return {
title: this.title,
meta: [{
hid: 'description',
name: 'description',
content: this.description
}]
}
}
}
</script>
<script setup>
const title = ref('My App')
const description = ref('My App Description')
// This will be reactive even you change title/description above
useMeta({
title,
meta: [{
name: 'description',
content: description
}]
})
</script>
::
Example: built-in meta-components
Nuxt 3 also provides meta components that you can use to accomplish the same task. While these components look similar to HTML tags, they are provided by Nuxt and have similar functionality.
::code-group
<script>
export default {
head () {
return {
title: 'My App',
meta: [{
hid: 'description',
name: 'description',
content: 'My App Description'
}]
}
}
}
</script>
<template>
<div>
<Head>
<Title>My App</Title>
<Meta name="description" content="My app description"/>
</Head>
<!-- -->
</div>
</template>
::
::alert{icon=👉}
- Make sure you use capital letters for these component names to distinguish them from native HTML elements (
<Title>
rather than<title>
). - You can place these components anywhere in your template for your page. ::