采用vue2.0+axios+vue-router+全ES6写法,写完了整个项目,Github地址:https://github.com/SinHide/shopping-cart.git 欢迎pull和star
2017-05-08
采用vue2.0+axios+vue-router+全ES6写法,写完了整个项目,Github地址:https://github.com/SinHide/shopping-cart.git 欢迎pull和star
2017-05-08
计算总金额每次改动都要执行计算函数,放在监听器里方便些
watch:{
'productList':{
handler:function(){
this.calcTotalPrice()
},
deep:true
},
},
watch:{
'productList':{
handler:function(){
this.calcTotalPrice()
},
deep:true
},
},
2017-05-06
checkAll: function(flag){
this.checkAllFlag = flag;
this.productList.forEach(function(value,index){
value.checked = flag;
})
}
我这样写也没问题
this.checkAllFlag = flag;
this.productList.forEach(function(value,index){
value.checked = flag;
})
}
我这样写也没问题
2017-05-05
老师大神,5-1这章,item.checked 不用 vm.set ,直接在元件上用 v-model = "item.cheked" 进行绑定,也是可以的。
2017-05-05