-
-
Notifications
You must be signed in to change notification settings - Fork 166
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
Describe the bug
Hi, currently there is no option to select dates before 01-01-1970, even when minDate prop is set to earlier dates.
Using default input with type="date" allows update value to earlier days but modal doesn't allow to selected prior dates.
To Reproduce
import dayjs from "dayjs";
const now = dayjs();
const minDays = now.subtract(100, "years")
const date = ref('');
<Datepicker
v-model="date"
:min-date="minDate"
:max-date="now.format('YYYY-MM-DD')"
/>
Expected behavior
Allow to select dates before 01-01-1970 when minDates prop is set to earlier dates.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop & mobile (please complete the following information):
library:
days@1.11.1
@vuepic/vue-datepicker: @3.1.1
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working