Thank You For Your Time!我想将接口都模块化出来index-page.vueimport {
getCarList
} from 'api/car.js';
created: function () {
getCarList();
},car.jsexport function getCarList() { let url = domain + '/api/webOldCar/initNominate.action'; this.$http.get(url).then((res) => { console.log(res);
})
}报错说this没有定义。我不知道在car.js中,this指向的是什么?也许是vue-resource?
添加回答
举报
0/150
提交
取消
