diff --git a/doc/steps/RouterDoc.vue b/doc/steps/RouterDoc.vue
index cf5306066..6fdd4a451 100644
--- a/doc/steps/RouterDoc.vue
+++ b/doc/steps/RouterDoc.vue
@@ -5,7 +5,7 @@
. Here is an example with vue-router.
-
+
diff --git a/doc/tabmenu/RouterDoc.vue b/doc/tabmenu/RouterDoc.vue
index 80adfc59f..eadcb3aa8 100644
--- a/doc/tabmenu/RouterDoc.vue
+++ b/doc/tabmenu/RouterDoc.vue
@@ -5,7 +5,7 @@
NuxtLink or
router-link. Here is an example with vue-router.
-
+
@@ -280,14 +280,14 @@ export default {
]
}
};
- },
- watch: {
- $route() {
- this.active = this.items.findIndex((item) => this.$route.path === this.$router.resolve(item.route).path);
- }
- },
- mounted() {
- this.active = this.items.findIndex((item) => this.$route.path === this.$router.resolve(item.route).path);
}
+ // watch: {
+ // $route() {
+ // this.active = this.items.findIndex((item) => this.$route.path === this.$router.resolve(item.route).path);
+ // }
+ // },
+ // mounted() {
+ // this.active = this.items.findIndex((item) => this.$route.path === this.$router.resolve(item.route).path);
+ // }
};