基于vue新建的nuxt是没有自带html文件的,在nuxt.config.js中可以修改
export default {
head: {
title: 'demo', //对应<title>demo<title>
htmlAttrs: {
lang: 'en' //对应<html lang="en">
},
meta: [ //里面一个对象对应 meta 标签
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' },
{ name: 'format-detection', content: 'telephone=no' },
{ name: 'sogou_site_verification', content: 'cSWVXzylnS' },
],
link: [ //里面一个对象对应一个 link 标签
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
}