Nuxt.js 为页面提供的特殊配置项。其中 head 配置当前页面的 Meta 标签,
export default {
head(){
return {
title: "培训详情",
meta: [
{ hid: 'description', name: 'description', content: '培训详情' },
{ hid: 'keywords', name:"keywords", content:"培训详情" },
]
}
},
}