-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Description
Environment
Vuetify Version: 3.11.2
Vue Version: 3.5.25
Steps to reproduce
- Set 'min' prop on VDateInput
- Click on the date input to open the date picker
- Observe the year navigation arrows
- Notice the "next year" button is disabled despite no max date being set
Expected Behavior
When the min prop is set on VDateInput, only dates before the min value should be disabled.
The year navigation buttons (previous/next) should remain functional and only prevent navigation to years that would be entirely before the min date.
Actual Behavior
When the min prop is set on VDateInput, the "next year" (forward) navigation button becomes incorrectly disabled.
The max prop does not have this issue - it correctly only affects the previous year button when appropriate.
Reproduction Link
https://play.vuetifyjs.com/#...
Other comments
The "next year" button only becomes enabled after manually selecting a date with a year adjacent to (one year after) the year specified in the min prop.
For example, if min="2025-01-01", the next year button remains disabled until selecting a date in 2026.
Images