el-table找那個使用el-input-number
阿新 • • 發佈:2021-02-05
技術標籤: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>