설치 yarn add axios or npm install axios --save main.js import axios from 'axios' Vue.prototype.$http = axios 사용법 - get 방식 1 2 3 4 5 6 7 8 this.$http .get('api_url', { params: { name: 'TEST' } }) .then(res => { console.log(res); }) .catch(error => { console.log(error); }); Colored by Color Scripter cs - post 방식 1 2 3 4 5 6 7 8 9 10 11 12 13 let formData = new FormData(); formData.append('email', t..