[Vuejs]-Nuxt/Vuejs Event to fire when page done rendering all the components

0👍

How about using updated . I used that for data changing state . Hope you get some help from this tips

updated: function () {
  this.$nextTick(function () {
    // Code that will run only after the
    // entire view has been re-rendered
  })
}

Leave a comment