Skip to content

Commit

Permalink
v-show requires wrapping router-view?
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Apr 8, 2024
1 parent 94c375e commit 2610330
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/entry/analysis/modules/Analysis.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ onUnmounted(() => {
<ActivityBar />
<div id="center" class="overflow-auto p-3 w-100">
<CenterFrame v-show="showCenter" id="galaxy_main" @load="onLoad" />
<router-view v-show="!showCenter" :key="$route.fullPath" class="h-100" />
<div v-show="!showCenter" class="h-100">
<router-view :key="$route.fullPath" />
</div>
</div>
<FlexPanel v-if="showPanels" side="right">
<HistoryIndex />
Expand Down

0 comments on commit 2610330

Please sign in to comment.