baozhengrui

导航

el-input输入框的数字不能超过100

<el-input v-model="form.weight" @input="numValid()" type="number" max="100"
                        placeholder="请输入权重" />

function numValid() {
    if(form.value.weight >=100){
        form.value.weight = 100
    }
}

posted on 2024-10-24 11:42  芮艺  阅读(20)  评论(0编辑  收藏  举报