'How to set lang attribute on html element with Nuxt?
Using the file nuxt.config.js
file, head
contents can be customized to add some meta, or other things:
module.exports = {
/*
** Headers of the page
*/
head: {
title: 'awesome title',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
...
}
But I can't find anything in the documentation to set attributes on the html
element -- I want to set the lang
attribute. Is there a way to do that?
Solution 1:[1]
Source: Declaring language in HTML tag · Issue #388 · nuxt/nuxt.js
head
supports a htmlAttrs
property. It will map each key:value of the object as attribute:value
module.exports = {
head: {
htmlAttrs: {
lang: 'en'
},
title: 'awesome title',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
...
}
Solution 2:[2]
In Nuxt 3 type in the component
<script setup>
useHead({
htmlAttrs: {
lang: 'en',
style: 'font-size: 13px'
}
})
</script>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | yuriy636 |
Solution 2 | Daniel |