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)
    })
  }
}

猜你喜欢

转载自www.cnblogs.com/huanglong1987/p/12799669.html