superman66 / vue-axios-github

Vue 全家桶 + axios 前端实现登录拦截、登出、拦截器等功能
http://superman66.github.io/vue-axios-github/
MIT License
2.68k stars 731 forks source link

Vue.prototype.axios = axios;报错 #17

Open wuyadream opened 7 years ago

wuyadream commented 7 years ago

错误提示为:Cannot set property axios of #<Vue$3> which has only a getter at eval ,都是按照readme文档来搭建的。然后提示这个错误

superman66 commented 7 years ago

你试试这样:

Vue.prototype.$axios = axios;

如果还有问题的话,提供下你 vue 的版本信息

wuyadream commented 7 years ago

修改后赋值语句没有问题了,但是在访问的时候报错了: this.$axios.post is not a function。