为啥值赋不上去?
应该是你没有使用箭头函数导致的,导致函数内 this 作用域不同了,
两种解决方法,
1、换成 then( (response)=>{} )
2、init(){ let _this = this;
this.axios.get('xxxx').then(function(res){ _this.carList = res.data.data })}
可能是使用了保留字做变量名,换个变量名就好