input,el-autocomplete 框限制输入长度


<el-input
placeholder="请输入"
@input="inputChange"
type="number"
v-model="codeForm.phoneNum"
autocomplete="off"
></el-input>

inputChange(value) {
if (value.toString().length > 11) {
this.codeForm.phoneNum = this.codeForm.phoneNum.toString().slice(0, 11)
}
console.log(value);
},


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM