Jak wywołać funkcję po pewnym czasie w vue.js
mounted: function () {
this.$nextTick(function () {
// Code that will run only after the
// entire view has been rendered
})
}
Graceful Gull