使用如下钩子即可,但是前提条件是 没有默认配置head的title
asyncData ({ app }, callback) {
app.head.title = ‘new title’
callback(null, {})
},