Welcome aboard! We are happy you are here and wish you good net-raft!
<html>
<head>
<title>VueJs</title>
<script type = "text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.0/vue.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div id = "app">
<h1>{{ json.state }}</h1>
</div>
<script type = "text/javascript">
new Vue({
el: '#app',
data: {
json: null
},
created: function () {
var _this = this;
$.getJSON('https://geoip-db.com/json/', function (json) {
_this.json = json;
});
}
});
</script>
</body>
</html>
<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.region }}
</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
get ip address using vuejsVUE.JS
Click to see more ...
10K
76
create calendar using vuejsVUE.JS
Click to see more ...
2.5K
53
get client city using vuejsVUE.JS
Click to see more ...
1.2K
41
parse json url using vuejsVUE.JS
Click to see more ...
1.1K
36
create star rating using vuejs and cssVUE.JS
Click to see more ...
2.2K
21
get country using vuejsVUE.JS
Click to see more ...
1.7K
17
get client region name using vuejsVUE.JS
Click to see more ...
1.2K
13
get client latitude longitude using vuejsVUE.JS
Click to see more ...
1K
12
create switch function vuejsVUE.JS
Click to see more ...
1.4K
11
get client timezone using vuejsVUE.JS
Click to see more ...
741
9