[Vuejs]-Populate HTML template with $http response VueJS

0👍

The problem is that this.recs starts out empty. Vue cannot detect property additions, so you have to use set to tell it that new properties have been added (and to make those properties reactive).

Or you can re-assign a new object to this.recs rather than modifying its contents.

Leave a comment