核心提示:安装npm i axios在main.js里加入import axios from axios;Vue.prototype.$http=axios;使用this.$http.get(https://u...
安装
npm i axios
在main.js里加入
import axios from 'axios';
Vue.prototype.$http=axios;
使用
this.$http.get('https://ud.cn/v1/test').then(response => { console.log(response.data) }, response => { // error callback })