Wrong Format
data: () => { return { title: 'Page Title', } }, head: () => { return { title: this.title } },
Correct Format
data: () => { return { title: 'Page Title', } }, head() { return { title: this.title } },
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)