直接上代码
<el-input placeholder="大屏轮播时长" :value="loopForm.carouselDuration" @input="onCarouselDurationInput" ></el-input>
onCarouselDurationInput(e) {
this.$nextTick(()=> {
this.loopForm.carouselDuration = e.replace(/[^\d]/g, '')
})
},