el-input-number怎么控制最大值不能超过商品的库存?
<el-table-column prop="count" align="center" label="数量" width="220">
<template slot-scope="scope">
<el-input-number
v-model="scope.row.count"
:min="1"
@change="(value) => handleChange(value, scope)"
></el-input-number>
</template>
</el-table-column>
data() {
return {
num: 1,
// cartlist: [{ count: 5 }],
list: [],
};
},
https://element.eleme.cn/#/zh... 用
max