vue限制输入框只能输数字且限制长度
<el-inputmaxlength="2"v-model="scope.row.score"placeholder="评分"@blur="inputBlur"@keyup.native="scope.r...
·
<el-input
maxlength="2"
v-model="scope.row.score"
placeholder="评分"
@blur="inputBlur"
@keyup.native="scope.row.score=(scope.row.score).replace(/[^\d.]/g,'');"
/>
更多推荐
已为社区贡献19条内容
所有评论(0)