使用文件nuxt.config.js
文件,head
可以自定义内容以添加一些元数据或其他内容:
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' }
]
},
...
}
但是我在文档中找不到任何东西来设置html
元素的属性——我想设置lang
属性。有没有办法做到这一点?