Função do gatilho de vue após certa hora

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