i have a problem with transitions with vue js. In chrome it kinda works but it's weird, and in microsoft edge it's not displaying at all. i don't know how to explain it so i will put a jsfiddle link to my code so you can see what i mean. link : my code
/* animation*/
.slide-fade-enter-active,
.slide-fade-leave-active {
transition: all .5s ease;
}
.slide-fade-enter,
.slide-fade-leave-to {
transform: translateX(25%);
opacity: 0;
}