vue axios全局配置

// 全局配置
axios.defaults.baseURL = 'http://123.207.32.32:8000'
axios.defaults.timeout = 500

axios({
  method: 'get',
  url: '/home/data',
  params: {
    type: 'sell',
    page: 1
  }
}).then(res => {
  console.log(res)
})
posted @ 2021-07-15 18:12  thomas_blog  阅读(132)  评论(0编辑  收藏  举报