Welcome aboard! We are happy you are here and wish you good net-raft!
<html>
<head>
<title>VueJs</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.8/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/vue.resource/1.0.3/vue-resource.min.js"></script>
<body>
<div id="app" v-cloak>
<ul>
<li v-for="post in posts">
{{ post.timezone }}
</li>
</ul>
</div>
<script type = "text/javascript">
var app = new Vue({
el: '#app',
data: {
posts: []
},
mounted: function() {
var vm = this
this.$http.get('https://ipinfo.io/')
.then(function(response) {
vm.posts = response
})
}
})
</script>
</body>
</html>
The most helpful VUE.JS solutions