El-table custom column, how to transfer the row data and the data originally to be transmitted in the custom component?

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>
Feb.28,2021

can't you pass more than one parameter?


handleChange ($event,scope.row)

Menu