[Vuejs]-Flip.from() triggers onLeave() while <div> is still present

0👍

Need to add targets: gsap.utils.toArray('.list-control [data-flip-id]'). So:

Flip.from(this.$data.state, {
  // ...
  targets: gsap.utils.toArray('.list-control [data-flip-id]'),
  // ...
});

Leave a comment