diff --git a/components/doc/DocComponent.vue b/components/doc/DocComponent.vue index 26dc47657..3891826ba 100644 --- a/components/doc/DocComponent.vue +++ b/components/doc/DocComponent.vue @@ -49,7 +49,7 @@ export default { }; }, mounted() { - this.tab = this.$route.hash.includes('api') ? 1 : 0; + this.tab = this.$route.hash.includes('api') ? 1 : this.$route.hash.includes('pt') ? 2 : 0; } };