vue axios创建实例

const instance = axios.create({
  baseURL: 'http://123.207.32.32:8000',
  timeout: 1000,
});
instance({
  method: 'get',
  url: '/home/data',
  params: {
    type: 'sell',
    page: 1
  }
}).then(res => {
  console.log(res)
})
原文地址:https://www.cnblogs.com/zhangxuechao/p/15017025.html