在elementUI的官方文档中table的formatter接收四个参数
Function(row, column, cellValue, index)
请问能否在其中传入自定义参数的同时不影响formatter的默认传参
<el-table-column label="缴费金额" :formatter="formatPrice(props.row.price)"></el-table-column>
formatPrice(price){
return () => {
return price;
};
}