How to read stream+json responses from Vuejs?
I solved this problem with SSE:
let es = new EventSource('http://localhost:8081/pets');
es.addEventListener('message', event => {
let data = JSON.parse(event.data);
this.pets.push(data);
}, false);