Vue
axios
ryuzuka
2019. 2. 23. 03:03
axios
https://ryuzuka.github.io/VUE/tutorial/16_axios.html
HTTP 요청을 위한 axios
설치
npm install --save axios // 설치
import Axios from 'axios' // import
Vue.prototype.Axios = Axios // Vue 전역 추가 ( 또는 각 컴포넌트 별로 import )
axios
new Vue({
el: '#app',
data: {
posts: null
},
methods: {
fetchPosts () {
this.Axios.get( 'https://jsonplaceholder.typicode.com/posts' )
.then(( response ) => {
this.posts = response.data
})
}
}
})