MikaelEdebro / vue-airbnb-style-datepicker

A VueJs datepicker with a similar look and functionality as the popular AirBnb datepicker.
https://mikaeledebro.gitbooks.io/vue-airbnb-style-datepicker/
MIT License
505 stars 105 forks source link

Add isDayBlocked functionality from react-dates #109

Open postalservice14 opened 5 years ago

postalservice14 commented 5 years ago

I would like the ability to pass a function as a prop that gets fired to determine if a date is disabled or not. I believe react-dates has this functionality as isDayBlocked

Here is an example to disable all Sundays:

<AirbnbStyleDatepicker
    :is-day-blocked="(date) => moment(date).day() === 0"
/>