({
+ return Object.keys(locales).map((key) => ({
lang: key,
label: locales[key].langLabel || '',
}));
@@ -65,21 +67,48 @@ export default {
},
watch: {
+ // eslint-disable-next-line
+ '$route.path'() {
+ this.setTitle();
+ },
+
lang(val) {
setLang(val);
this.setTitle();
},
+
+ config: {
+ handler(val) {
+ if (val) {
+ this.setTitle();
+ }
+ },
+ immediate: true,
+ },
},
- created() {
- this.setTitle();
+ mounted() {
+ if (this.$route.hash) {
+ scrollToAnchor(this.$route.hash);
+ }
},
methods: {
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}`;
}
diff --git a/packages/vant-cli/site/desktop/components/Content.vue b/packages/vant-cli/site/desktop/components/Content.vue
index 9d534dcc4..1bb0dcee6 100644
--- a/packages/vant-cli/site/desktop/components/Content.vue
+++ b/packages/vant-cli/site/desktop/components/Content.vue
@@ -203,7 +203,7 @@ export default {
}
section {
- padding: 30px;
+ padding: 24px;
overflow: hidden;
}
@@ -220,7 +220,8 @@ export default {
border-radius: @van-doc-border-radius;
}
- &--changelog {
+ &--changelog,
+ &--changelog-v3 {
strong {
display: block;
margin: 24px 0 12px;
diff --git a/packages/vant-cli/site/desktop/components/Header.vue b/packages/vant-cli/site/desktop/components/Header.vue
index a30fc2894..4063e7995 100644
--- a/packages/vant-cli/site/desktop/components/Header.vue
+++ b/packages/vant-cli/site/desktop/components/Header.vue
@@ -14,7 +14,11 @@
/>