Nuxt.js 為頁(yè)面提供的特殊配置項(xiàng)毡们。其中 head 配置當(dāng)前頁(yè)面的 Meta 標(biāo)簽,
export default {
head(){
return {
title: "培訓(xùn)詳情",
meta: [
{ hid: 'description', name: 'description', content: '培訓(xùn)詳情' },
{ hid: 'keywords', name:"keywords", content:"培訓(xùn)詳情" },
]
}
},
}