使用axios

import axios from 'axios';
export default {
  data() {
    return {
      data: null
    }
  },
  created() {
    axios.get('/api/data').then(response => {
      this.data = response.data;
    });
  }
}

使用 vue-resource

import VueResource from 'vue-resource';
Vue.use(VueResource);

export default {
  data() {
    return {
      data: null
    }
  },
  created() {
    this.$http.get('/api/data').then(response => {
      this.data = response.body;
    });
  }
}

其中 ‘/api/data’ 是请求地址,可以替换成你需要请求的地址.

Logo

前往低代码交流专区

更多推荐