🚑 Fix animation

This commit is contained in:
SebClem 2022-06-16 12:24:07 +02:00
parent 3511bedaec
commit 10020efa61
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -3,10 +3,10 @@
<header-component />
<v-main>
<v-container>
<router-view v-slot="{ Component }">
<v-fade-transition>
<component :is="Component" />
</v-fade-transition>
<router-view v-slot="{ Component, route }">
<v-scroll-x-transition mode="out-in">
<component :is="Component" :key="route.path" />
</v-scroll-x-transition>
</router-view>
</v-container>
</v-main>