Created
February 8, 2023 01:06
-
-
Save sagalbot/a3f82ea7d720e529fe945b400507891b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<Transition | |
v-bind="$attrs" | |
enter-active-class="ease-out duration-300" | |
enter-class="opacity-0" | |
enter-to-class="opacity-100" | |
leave-active-class="ease-in duration-200" | |
leave-class="opacity-100" | |
leave-to-class="opacity-0" | |
v-on="$listeners" | |
> | |
<slot></slot> | |
</Transition> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<FadeTransition> | |
<h1>Hello there</h1> | |
</FadeTransition> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment