diff --git a/packages/client/src/pages/custom-tab-view.vue b/packages/client/src/pages/custom-tab-view.vue index 49af4f57..799abcc1 100644 --- a/packages/client/src/pages/custom-tab-view.vue +++ b/packages/client/src/pages/custom-tab-view.vue @@ -15,6 +15,14 @@ onMounted(() => { }, 2000) } }) + +const iframeViewVisible = ref(true) +watch(() => route.params.name, () => { + iframeViewVisible.value = false + setTimeout(() => { + iframeViewVisible.value = true + }, 100) +})