diff --git a/frontend/src/pages/Community.vue b/frontend/src/pages/Community.vue index 20e7d3fe6..4388d6f4a 100644 --- a/frontend/src/pages/Community.vue +++ b/frontend/src/pages/Community.vue @@ -196,7 +196,9 @@ export default { methods: { updateTabIndex() { const index = COMMUNITY_TABS.indexOf(this.$route.params.tab) - this.tabIndex = index > -1 ? index : 0 + this.$nextTick(() => { + this.tabIndex = index > -1 ? index : 0 + }) this.closeAllOpenCollapse() }, closeAllOpenCollapse() {