From e50c5f5a7154be04e054dee0aa5f19a8701c7362 Mon Sep 17 00:00:00 2001 From: gabaldon Date: Wed, 24 Jan 2024 13:29:22 +0100 Subject: [PATCH] fix: add transitions --- src/App.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/App.vue b/src/App.vue index b015a4376..fc6240200 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,9 +5,9 @@ >
- - - + + + @@ -33,7 +33,7 @@ import { type LocaleCodes } from '@/types' import { useIdle } from '@vueuse/core' const loading = ref(true) -const transitionName: Ref = ref(null) +const transitionName: Ref = ref('no-transition') const route = useRoute() const polling = ref() @@ -51,7 +51,7 @@ watch(route, (to, from) => { if (to.path.includes('/settings') || from.path.includes('/settings')) { transitionName.value = 'zoom' } else { - transitionName.value = null + transitionName.value = 'no-transition' } }) onMounted(() => {