欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue限制输入框只能输数字且限制长度

程序员文章站 2022-06-07 14:15:20
...
<el-input
                  maxlength="2"
                  v-model="scope.row.score"
                  placeholder="评分"
                  @blur="inputBlur"
                  @keyup.native="scope.row.score=(scope.row.score).replace(/[^\d.]/g,'');"
                />
相关标签: vue input 数字