diff --git a/src/components/Content/TocItem.vue b/src/components/Content/TocItem.vue index b64c651..fc927ac 100644 --- a/src/components/Content/TocItem.vue +++ b/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) {