VUE Elemen-ui 中日期disabledDate ,禁止选择当前之前的日期

    <el-date-picker
        v-model="ruleForm.startDate"
        type="date"
        placeholder="选择日期"
        :picker-options="pickerOptions0"
        class="inp"
    ></el-date-picker>

设置 pickerOptions0 属性值

       data(){
            return {
                pickerOptions0:{
                    disabledDate(time) {
                        return time.getTime() < Date.now()-8.64e6;//如果没有后面的-8.64e6就是不可以选择今天的
                    }
                },
            }
        },

最新的限制操作:https://blog.csdn.net/qq_42715494/article/details/103430065

猜你喜欢

转载自blog.csdn.net/qq_42715494/article/details/99637744