[Vuejs]-How to trigger transition when data is loaded in component in vue.js?

0👍

From the docs:

When resolved, the component will also emit a ‘route-data-loaded’ event.

So:

events: {
  'route-data-loaded': function() {
    animateNewsApparition()
  }
}

Leave a comment