axios在vue中使用遇到的问题:

已经引入axios,使用时会报错,如下:

import Vue from 'vue'
import App from './App.vue'
import axios from "axios"

Vue.config.productionTip = false
Vue.prototype.$axios= axios;

new Vue({
  render: h => h(App),
}).$mount('#app')

错误信息:

[Vue warn]: Error in created hook: "TypeError: Cannot read property 'get' of undefined"


原因:没有在main.js的vue实例中注册axios

//main.js
new Vue({
//没有注册axios
  render: h => h(App),
}).$mount('#app')

解决方法:在main.js的vue实例中注册axios

import Vue from 'vue'
import App from './App.vue'
import axios from "axios"

Vue.config.productionTip = false
Vue.prototype.$axios= axios;

new Vue({
  axios,//注册axios
  render: h => h(App),
}).$mount('#app')
Logo

前往低代码交流专区

更多推荐