1. 需求 使用elementUI 的输入框el-input时,限制输入框只能输入正整数 2. 代码 <el-input v-model.number="value" oninput="value=value.replace(/[^\d]/g,'')" > ></el-input>