vue-axios

引入部分

import axios from 'axios'

方法部分

methods: {
    add() {
      self = this
      axios.get('http://www.easy-mock.com/mock/5990199fa1d30433d85fa4b6/care/list/info').then(response => {
        // console.log(response.data)
        self.list = (response.data)
      }, response => {
        alert("错误")
      })
    }
  }

html部分


你可能感兴趣的:(vue-axios)