JSFiddle - React, Tailwind, and code Playground
HTML
<div id = "app">
<ul>
<li v-for="item in items">{{ item.City }}</li>
</ul>
</div>
JavaScript
new Vew (
el: '#app',
data: {
items: []
},
mounted () {
getItems();
},
methods : {
getItems () {
getJSON("https://api.jsonbin.io/b/5c0f584783dba9483eff7ad8", function(result) {
this.items = result;
});
}
}
);