Comment appeler la fonction après un certain temps dans Vue.js

mounted: function () {
  this.$nextTick(function () {
    // Code that will run only after the
    // entire view has been rendered
  })
}
Graceful Gull