opnform-host-nginx/client/components/global/transitions/VTransition.vue

21 lines
474 B
Vue
Raw Normal View History

2023-12-09 15:47:03 +01:00
<template>
<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 {
name: "VTransition",
props: { name: {type: String, default: "slideInUp" } },
2023-12-09 15:47:03 +01:00
}
</script>