nuxt head 配置

export default {
 head(){
    return {
      title:"xxxx",
      meta:[{
        name:"description",
        hid:"description",
        content:'set page'
      }],
      link:[{
        rel:"",
        href:''
        }],
        script:[{
          src:''
        }]
    };
  }
}
原文地址:https://www.cnblogs.com/shixingwen/p/12419295.html