let app = new Vue({
el: '#app',
data: {
info: ''
},
methods: {
Get: function() {
this.info = '';
axios.get('https://ziptasticapi.com/90210')
.then((response) => {
let res = response.data;
this.info = res;
});
}
}
});
<div id="app">
<button @click="Get">Get</button>
<p>{{ info.country }}</p>
<p>{{ info.state }}</p>
<p>{{ info.city }}</p>
</div>