<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>