disabledDate无效
内部使用了默认的禁用函数,并没有使用我们提供的props.disabledDate
解决方案: 修改源码
2.1 node_modules\ant-design-vue\es\vc-calendar\src\RangeCalendar.js
函数 disabledStartMonth(大约658行), 增加:
函数 disabledEndMonth,增加:
if (typeof this.KaTeX parse error: Expected '}', got 'EOF' at end of input: …{ if (this.props.disabledDate(month) == true) {
return true;
}
}