<el-input type="number" v-model.number="timeLimitOurse"   @input="handerInput"></el-input>

// 判断自定义输入事件
handerInput() {
  // 判断不能输入小数点
  let str = '' + this.timeLimitOurse;
  if (str.indexOf('.') !== -1) {
    let arr = str.split('');
    arr.splice(arr.length - 1);
    let str2 = arr.join('');
    this.timeLimitOurse = +str2;
  }
},
Logo

前往低代码交流专区

更多推荐