[FEAT] Disable page nav. anim.

This commit is contained in:
2026-01-01 19:38:52 +01:00
parent 3e117c8f5a
commit 04f88dd878
2 changed files with 5 additions and 17 deletions

View File

@@ -7,9 +7,7 @@
<Breadcrumbs class="mb-6" />
<router-view v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
<component :is="Component" />
</router-view>
</div>
@@ -88,14 +86,4 @@
};
</script>
<style>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>