We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3ad68 commit c9b0700Copy full SHA for c9b0700
packages/@vuepress/core/lib/prepare/ClientComputedMixin.js
@@ -63,6 +63,11 @@ module.exports = siteData => {
63
64
get $title () {
65
const page = this.$page
66
+ const { seoTitle } = this.$page.frontmatter
67
+ if (typeof seoTitle === 'string') {
68
+ return seoTitle
69
+ }
70
+
71
const siteTitle = this.$siteTitle
72
const selfTitle = page.frontmatter.home ? null : (
73
page.frontmatter.title || // explicit title
0 commit comments