引入 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);
老铁把这两个注释了就好了