使用文件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
属性。有没有办法做到这一点?
根目录下加个app.html
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
{{HEAD}}
</head>
<body>
{{APP}}
</body>
</html>
试试这个能不能解决你的问题,改配置文件会多一个data-n-head属性,不建议