I have this setup in my code:
<transition-group tag="ul" role="list" name="flip" appear>
<li :key="1"></li>
<li :key="2"></li>
<li :key="3"></li>
</transition-group>
The classes are not being applied, but they do exist. When I add them manually, it all works. So I am not sure why this is not working. Does appear
just not work with <transition-group>
?