docs(cli): improve document title

This commit is contained in:
chenjiahan 2020-10-07 07:58:51 +08:00
parent f7a1208a18
commit dd8f37b19c
2 changed files with 19 additions and 1 deletions

View File

@ -67,6 +67,11 @@ export default {
},
watch: {
// eslint-disable-next-line
'$route.path'() {
this.setTitle();
},
lang(val) {
setLang(val);
this.setTitle();
@ -92,7 +97,18 @@ export default {
setTitle() {
let { title } = this.config;
if (this.config.description) {
const navItems = this.config.nav.reduce(
(result, nav) => [...result, ...nav.items],
[]
);
const current = navItems.find((item) => {
return item.path === this.$route.meta.name;
});
if (current && current.title) {
title = current.title + ' - ' + title;
} else if (this.config.description) {
title += ` - ${this.config.description}`;
}

View File

@ -50,6 +50,8 @@ export default {
},
},
emits: ['switch-version'],
watch: {
$route() {
this.setNav();