1、npm install axios
2、在main.js中引入
import axios from 'axios'
Vue.prototype.$http = axios;
3、在需要传数据的组件中
v-model 绑定双向数据
this.$http.post('https://iqd-api.kimchou.com/api/v1/member/agent/join',{
mobile: this.model.mobile,
platform: this.model.platform,
name: this.model.name
}).then(function(response){
console.log(response);
})