需要禁用掉2020以前的月份,当前月和当前之后的月份数据。
disabledDate(current){
let disabledMonth = Moment().format(“YYYY-MM”);
/return current.month()>=5;/
return current > Moment(disabledMonth).endOf(‘day’) || current < Moment(“2020-01”).endOf(‘day’);
}
————————————————
版权声明:本文为CSDN博主「瑟瑟青玄」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_43298561/article/details/106691795