axios 使用

安装

npm i axios


在main.js里加入

import axios from 'axios';
Vue.prototype.$http=axios;
 
  
使用
 
  
 
  
this.$http.get('http://ud.cn/v1/test').then(response => {
  console.log(response.data)
}, response => {
  // error callback
})


你可能感兴趣的:(vue+apicloud)