JSFiddle - React, Tailwind, and code Playground
by andyjh07
HTML
<div id="app"></div>
JavaScript
const vm = new Vue({
el: "#app",
data: {
results: []
},
mounted() {
axios.get("https://world-cup-json.herokuapp.com/matches/today")
.then(response => {this.results = response.data.results});
console.log(data.results);
}
})