页面总是报错
editCart (type, item) {
if (type = 'add') {
item.productNum++
} else if (type = 'minus') {
item.productNum--
} else {
item.checked = !item.checked
}
不是 (type = 'add')
而是 (type == 'add')
= 是赋值,== 才是判断,少写了一个等号,细心点嘛
我也一直卡在这里