要求:输入大于0的正整数
<template>
<Input v-model="value" placeholder="Enter something..." style="width: 300px" @on-keyup="hhh(value)"/>
</template>
<script>
export default {
data () {
return {
value: ''
}
},
methods:{
hhh(){
if(this.value == 0){
this.value=""
}else{
this.value=this.value.replace(/\D/g,'')
}
}
}
}
</script>