We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VueDatePicker.sitar(v-model="dateRange",range=true,v-bind:max-date="tomorrow",output-format='YYYY-MM-DD',inline=true)
tomorrow(){ const date = new Date(); date.setDate(date.getDate() +1); return date.toISOString().split('T')[0]; },
I'm using 0.2.11.
The text was updated successfully, but these errors were encountered:
This came in as a bug report in my app the other day as well. Thanks for narrowing it down to the max-date prop @riddley.
Sorry, something went wrong.
Hi, any solution for this? when set max date, the past year is disabled.
any fix?
I don't need to disable any date so I made this ugly fix:
.vd-picker__years li:disabled, .vd-picker__years li[disabled] { cursor: default; color: inherit !important; pointer-events: inherit !important; }
Successfully merging a pull request may close this issue.
VueDatePicker.sitar(v-model="dateRange",range=true,v-bind:max-date="tomorrow",output-format='YYYY-MM-DD',inline=true)
tomorrow(){ const date = new Date(); date.setDate(date.getDate() +1); return date.toISOString().split('T')[0]; },
I'm using 0.2.11.
The text was updated successfully, but these errors were encountered: