Vue.JS 2 Tutorial #33 - GET Requests
GET Requests
this.$http.get('http://jsonplaceholder.typicode.com/posts').then(function(data) {
// console.log(data);
this.blogs = data.body.slice(0, 10);
})
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인