vue使用element-ui的时候数字输入框只能输入数字
<el-input placeholder="0" size="small" v-model="query" oninput="value=value.replace(/[^\d]/g,'')" ></el-input>
加入正则来限制输入
<el-input placeholder="0" size="small" v-model="query" oninput="value=value.replace(/[^\d]/g,'')" ></el-input>
加入正则来限制输入