美文网首页
el-input限制输入

el-input限制输入

作者: 小白的踩坑日常 | 来源:发表于2020-08-28 13:30 被阅读0次

摘自:https://blog.csdn.net/weixin_43837268/article/details/94588736

<el-input type="text" @input.native="changeCode" v-model="formSearch.licensedCode" maxlength="40" placeholder="请输入" clearable></el-input>
 
<script>
methods:{
changeCode() {
  this.$nextTick(() => {
    if(this.formSearch.licensedCode !== null){
      this.formSearch.licensedCode = this.formSearch.licensedCode.replace(/[^\d]/g,'')
    }
  })
},
}
</script>

相关文章

网友评论

      本文标题:el-input限制输入

      本文链接:https://www.haomeiwen.com/subject/jhllsktx.html