Cómo llamar a la función después de un tiempo en Vue.js
mounted: function () {
this.$nextTick(function () {
// Code that will run only after the
// entire view has been rendered
})
}
Graceful Gull