引入axios,并且已经挂到vue实例上面了。
this.$http.get(‘api/getNewsList’).then((res)=>{this.news=res.data}).catch((err)=>{console.log(err)})
使用的时候报出了上述错误

解决方法
// import VueResource from ‘vue-resource’
// Vue.use(VueResource);
老铁把这两个注释了就好了