fix: align $title with vuepress (#158) (#163)

fix #158
pull/154/head
Matias Capeletto 4 years ago committed by GitHub
parent b9d63c0719
commit 30740d3516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -44,7 +44,9 @@ export function mixinGlobalComputed(
$title: {
get() {
return page.value.title || siteByRoute.value.title
return page.value.title
? page.value.title + ' | ' + siteByRoute.value.title
: siteByRoute.value.title
}
},

Loading…
Cancel
Save