我们会发现,如果直接在template中{{count(item)}},
computed:{
count(item){return 1+item}
} 这样的代码会报错
所以为了解决这个问题,需要将computed改为
count: function () {
return function (item) {
return item+1
}
},
至于为什么这么写我还没想明白,有人知道的话可以告诉我一下不
后续来了,至于为啥这么写可以通过可以参考