1. 程式人生 > 其它 >el-table找那個使用el-input-number

el-table找那個使用el-input-number

技術標籤:ElementUIel-tableel-tableel-inout-number觸發一次

最近使用el-table中需要計數,但是發現加上elementUI官網的程式碼發現只能觸發一次,下面是解決辦法,實用

  <el-table-column
          label="數量"
          prop="count"
        >
          <template scope="scope">
      <el-input-number v-model="scope.row.count"
controls-position="right" :min="1" @change="(value) => handleChange(value, scope)"></el-input-number> </template> </el-table-column>

在這裡插入圖片描述