axios全局引用
来源:8-9 Vue项目城市选择页 - Vuex实现数据共享
蓝色天空3922447
2019-03-04
import axios from 'axios'在main.js引入,不得行,还要添加其他的吗?
写回答
2回答
-
璃音丶
2019-03-05
main.js中
import axios from 'axios' Vue.prototype.$axios = axios new Vue({ axios, router, store, render: h => h(App)}).$mount('#app')
组件中使用
例:
this.$axios({ method: 'get', url:'/index.json', data: { city: this.city } }).then(this.getHomeInfoSuccess)
012019-03-05 -
Dell
2019-03-04
你必须在每个用的地方引入,这是个模块,模块只在所在模块中有用
00
相似问题