mengxiong10 / vue2-datepicker

A datepicker / datetimepicker component for Vue2
https://mengxiong10.github.io/vue2-datepicker/index.html
MIT License
1.52k stars 407 forks source link

[Feature request]: Disable choosing of a date in the coming month from the current month #738

Closed Boluwatife2904 closed 1 year ago

Boluwatife2904 commented 1 year ago

What problem does this feature solve? I want to be able to prevent users from selecting a date that is in the next month but is currently being shown in the current month. Take for instance, in the image attached below, I want to prevent from choosing dates that are in February which are 1, 2, 3 and 4 but they are currently visible.

Screenshot 2023-01-23 at 21 55 38

What does the proposed API look like?

mengxiong10 commented 1 year ago

css

.not-current-month {
  pointer-events: none;
}
Boluwatife2904 commented 1 year ago

css

.not-current-month {
  pointer-events: none;
}

Thank You.