as shown below, the change
event was supposed to pass the numeric size in input. I want to post the scope.row data in this event, but I don"t know how to send the two data at the same time. The following way of writing will send out the row data, but the numerical values in the original input will not come out
<el-table-column prop="quantity" label="">
<div slot-scope="scope">
<div class="biz-customcol">
<el-input-number :value="scope.row.quantity" @change="handleChange(scope.row)" :min="1" label=""></el-input-number>
</div>
</div>
</el-table-column>