The head Method
Nuxt.js uses vue-meta to update the
headersandhtml attributesof your application.
- Type:
ObjectorFunction
Use the head method to set the HTML Head tags for the current page.
<template>
<h1>{{ title }}</h1>
</template>
<script>
export default {
data() {
return {
title: 'Hello World!'
}
},
head() {
return {
title: this.title,
meta: [
// hid is used as unique identifier. Do not use `vmid` for it as it will not work
{
hid: 'description',
name: 'description',
content: 'My custom description'
}
]
}
}
}
</script>
Contributors
Debbie O'Brien
pooya parsa
Alexandre Chopin
Sébastien Chopin
Benjamin Canac
fgiraud
Sergey Bedritsky
Alba Silvente Fuentes
Alexander Lichter
Krutie Patel
Daniel Roe
Pim
Ahad Birang
Caught a mistake or want to contribute to the documentation? Edit this page on GitHub!
