2023-12-09 15:47:03 +01:00
|
|
|
<template>
|
2024-04-15 19:39:03 +02:00
|
|
|
<transition
|
|
|
|
|
v-if="name == 'slideInUp'"
|
|
|
|
|
enter-active-class="linear duration-300 overflow-hidden"
|
|
|
|
|
enter-from-class="max-h-0"
|
|
|
|
|
enter-to-class="max-h-screen"
|
|
|
|
|
leave-active-class="linear duration-300 overflow-hidden"
|
|
|
|
|
leave-from-class="max-h-screen"
|
|
|
|
|
leave-to-class="max-h-0"
|
2023-12-09 15:47:03 +01:00
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</transition>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2024-04-15 19:39:03 +02:00
|
|
|
name: "VTransition",
|
|
|
|
|
props: { name: {type: String, default: "slideInUp" } },
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
</script>
|