Closed
Description
The standalone demo repo https://github.com/rightaway/demo shows the issue. If you click the message1 button once and then click it again, the second message1 notification appears and then the first one disappears. This is what mode=out-in
is meant to solve for the transition
tag, but there's no equivalent for transition-group
. It leads to a very unattractive transition effect.
In this example I could use transition mode="out-in"
instead of transition-group
(in https://github.com/rightaway/demo/blob/master/src/Notify.vue#L3) except for the fact that if you click the message1 button and then the message2 button, Vue gives an error saying I need to use transition-group
.