提交 384c5c7d 编写于 作者: U ULIVZ 提交者: Evan You

fix: prioritize frontmatter's title, description and lang (#180)

close #177 close #184
上级 3757c6c2
......@@ -47,13 +47,13 @@ export default {
return targetLang || defaultLang || {}
},
$title () {
return this.$localeConfig.title || this.$site.title || ''
return this.$page.frontmatter.title || this.$localeConfig.title || this.$site.title || ''
},
$description () {
return this.$localeConfig.description || this.$site.description || ''
return this.$page.frontmatter.description || this.$localeConfig.description || this.$site.description || ''
},
$lang () {
return this.$localeConfig.lang || 'en-US'
return this.$page.frontmatter.lang || this.$localeConfig.lang || 'en-US'
},
$localePath () {
return this.$localeConfig.path || '/'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册