vue中的computed无法直接像methos一样传参,但我们可以使用利用闭包
computed:{ getDisabled(){ return (row)=>{ return row.id=1 } } }