How to set head from asyncData? [issue link] // in pages components head: { title: this.info.title }, asyncData ({ params }) { return axios.get(`/post/${params.id}/info`) .then((res) => { return { info: res.data.info } }).catch((err) => { console.log(err) }) }, This question is available on Nuxt.js community (#c946)