vuejs-datepicker
vuejs-datepicker copied to clipboard
only allow future dates to be picked
Hi, I would like to set my date picker to only have future dates to be able to be selected, how can I go about doing this?
Thanks
<datepicker :inline="true" :disabled-dates="disabledDates" />
<script>
import Datepicker from "vuejs-datepicker";
export default {
data() {
return {
disabledDates: {
to: new Date()
}
};
}
};
</script>