vue 中 el-date-picker标签 判断日期不能小于当前日期

  1. :picker-options=“expireTimeOption”

expireTimeOption: {

disabledDate(date) {

return date.getTime() <= Date.now();

}

},

vue 中 el-date-picker标签 判断日期不能小于当前日期_第1张图片vue 中 el-date-picker标签 判断日期不能小于当前日期_第2张图片

你可能感兴趣的:(vue 中 el-date-picker标签 判断日期不能小于当前日期)