Open
Description
Actual behavior
The Transitions do not play, the component gets rendered 100 ms after all the other components but the transition does not get played (component has attribute appear
)
Expected behavior
Play transition on appear
Steps to reproduce
- Use Vue 3
- Add transition
- add appear
Environment
- Device: Desktop
- OS: Windows 11
- Browser: Chrome 111
Additional context
<script setup>
import { TransitionFade } from "@morev/vue-transitions";
</script>
<template>
<transition-fade appear :delay="5000">
<img
class="logo"
src="@/assets/logos/java-edition.webp"
alt="Minecraft: Java Edition"
/>
</transition-fade>
</template>
Question: Is it required to call app.use even when using the components via import?
Possible solution
No response