cnpm install axios --save-dev
在main.js中引入
import axios from 'axios'
Vue.prototype.$axios = axios;
在組件中使用的時候
created(){
this.$axios.get('https://cnodejs.org/api/v1/topics').then(res=>{
console.log(res)
? ? ?})
}
cnpm install axios --save-dev
在main.js中引入
import axios from 'axios'
Vue.prototype.$axios = axios;
在組件中使用的時候
created(){
this.$axios.get('https://cnodejs.org/api/v1/topics').then(res=>{
console.log(res)
? ? ?})
}