Fonction de déclenchement Vue après un certain temps

mounted: function () {
  window.setInterval(() => {
    this.getNotifications()
  }, 30000)
}
ericklopezrulz