vue限制input输入数字和长度 <el-input v-model="gasLevelForm.multiple" type="text" maxlength="3" "this.value=this.value.replace(/\D/g,'')" style="width:200px;"/> “this.value=this.value.replace(/\D/g,’’)” 正则表达限制只能输入数字 maxlength=“3” 限制输入最大长度