let和箭头函数
为啥我的let 和箭头函数 在语言ES6下面还是报错
// let _this = this;
// this.$http.get("data/cartData.json",{"id":"1212"}).then(res=>{
// this.productLists = res.data.result.list;
// this.totalMoney = res.data.result.totalMoney;
// console.log(_this.productList,_this.totalMoney)
//
// })