input number类型去掉箭头且不能输入e和标点符号

input number类型去掉箭头且不能输入e和标点符号: https://blog.csdn.net/nnn_net/article/details/70778242

el-input限制非数字类型输入:@keyup.native="handChange"

handchange(){

  this.value = this.value.replace(/[^0-9]/g, '')

}

猜你喜欢

转载自blog.csdn.net/Running_FE/article/details/81120493