Use title from config

This commit is contained in:
Sam Carlton 2021-01-19 23:50:56 -06:00
parent a5c297d2d6
commit 9d2f6e20b6

View file

@ -1,3 +1,5 @@
import config from '../nuxt.config'
class TV { class TV {
// or `async data() {` // or `async data() {`
// or `get data() {` // or `get data() {`
@ -14,7 +16,7 @@ class TV {
eleventyComputed: { eleventyComputed: {
title: ({ video }) => { title: ({ video }) => {
// console.log('data', data) // console.log('data', data)
return `${ video.name } - Does It ARM` return `${ video.name } - ${ config.head.title }`
} }
}, },