Browse Source

bugfix tocitem

Bachir Soussi Chiadmi 4 năm trước cách đây
mục cha
commit
61303fde4d
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/components/Content/TocItem.vue

+ 3 - 1
src/components/Content/TocItem.vue

@@ -100,7 +100,9 @@ export default {
   //   console.log('editionid', this.editionid)
   // },
   beforeMount () {
-    this.isOpened = this.$route.params.textid.indexOf(this.item.uuid) >= 0
+    if (typeof this.$route.params.textid !== 'undefined') {
+      this.isOpened = this.$route.params.textid.indexOf(this.item.uuid) >= 0
+    }
   },
   methods: {
     onclick (e) {