[Vuejs]-What could be causing my Vue.js fetch API code to not display fake users as expected?

0👍

Inside the component instance you need to references the data and methods by using this
(it’s not needed in the HTML part because Vue is clever!)

then(data => this.users = (data.data));

Make sure you have this script tag to use Vue from a CDN (I assume you have it but it’s not on your code!)

Like in the example on the official doc:

Leave a comment