axios 交互

import axios from 'axios'
export default {
  name: 'App',
  data () {
    return {

    }
  },

  created () {
    // fetch方式实现跨域
    axios.post('/api/user/getUser', { id: 3 }).then(res => {
      console.log(res)
    })
  }
}
posted @ 2020-04-29 06:31  huanglongblog  阅读(135)  评论(0编辑  收藏  举报