[Vuejs]-Div animating out but not in

0👍

Well, turns out I just needed the div to have display:none set before the animation begins:

    beforeEnter(el){
        $(el).css('display',"none");
        $(el).css('opacity', 0);
    },

<transition  v-on:before-enter="beforeEnter" v-on:enter="slideDown" v-on:leave="slideUp">

Leave a comment