Итак, у меня есть универсальное приложение nuxt. Мета-теги Nuxt.config и заголовок отображаются нормально, заголовок из метода заголовка на странице переопределяет заголовок nuxt.config, как и предполагалось. Но метатеги из метода head на страницах не отменяют ни метатеги nuxt.config, ни рендеринг. Вот метод заголовка на странице.
head() {
return {
title: 'Test',
meta: [
{ hid: 'description', property: 'description', content: 'Hottest clips for' + this.$route.query.game,
hid: 'og:type', name:'og:type', content: 'website',
hid: 'og:image', name:'og:image', content: 'https://cdn2.unrealengine.com/Fortnite%2Fblog%2Fconsejos-comprometidos%2F11BR_Evergreens_Blue_NewsHeader-1920x1080-77ade2f5f2bc0312b4978dcd7639adfe00211fe6.jpg',
hid: 'og:url', name:'og:url', content: 'https://twitch-toc.now.sh'
}
]
}
},