标签:vue 踩坑 使用 log res OLE this console rom
使用vue cli ui,依赖vue-axios,axios。
引入:
import Vue from ‘vue‘ import axios from ‘axios‘ import VueAxios from ‘vue-axios‘ Vue.use(VueAxios, axios)
使用:
Vue.axios.get(api).then((response) => { console.log(response.data) }) //或 this.axios.get(api).then((response) => { console.log(response.data) }) //或 this.$http.get(api).then((response) => { console.log(response.data) })
标签:vue 踩坑 使用 log res OLE this console rom
原文地址:https://www.cnblogs.com/imPedro/p/12482856.html