fungsi panggilan vue setiap x detik

mounted: function () {
  window.setInterval(() => {
    this.myFunctionName() 
  }, 3000) //number of milliseconds
}
Literate Lentil