Files
hoppscotch/components/translate/SlideRight.vue
2021-07-03 13:14:58 +00:00

26 lines
486 B
Vue

<template>
<transition
:appear="appear"
name="translate-slide-right"
enter-active-class="duration-500 transform"
enter-class="-translate-x-full"
enter-to-class="translate-x-0"
leave-active-class="duration-500 transform"
leave-class="translate-x-0"
leave-to-class="-translate-x-full"
>
<slot></slot>
</transition>
</template>
<script>
export default {
props: {
appear: {
type: Boolean,
default: false,
},
},
}
</script>