Vue 中 El-Input 输入框只允许输入数字并隐藏上下滑动块
<template>
<el-input v-model="item.inputValue" type="text" placeholder="" @input="handleInput"></el-input>
</template>
<script>
export default {
data() {
return {
item: {
inputValue: ''
}
};
},
methods: {
handleInput(event) {
// 使用正则表达式过滤输入的内容,只保留数字
event.target.value = event.target.value.replace(/[\^\d]/g, '');
}
}
};
</script>
原文地址: https://www.cveoy.top/t/topic/pNdy 著作权归作者所有。请勿转载和采集!