Is it possible to apply 2 transition names for 1 element? I have 3 li elements, and I want that all of them will have the same leave, but only the top one to have a certain entrance. For example, I want all of them to have mizi-leave, but only the top one to have pizi-enter. I'm stuck on that issue and can't find any examples for that. If it's not possible, is there any other way to achieve what I'm looking for?
My last try was:
<transition :name="[idx ? '' : 'pizi', 'mizi']" mode="out-in">
<li :key="msg.id" class="bigdiv">{{msg.content}} {{idx}}</li>
</transition>
The idx is being passed as a prop, the top li has idx of 0.
Use condition like this
transition 'pizi' apply for first element. others have 'mizi'.
and