epicmaxco / vuestic-ui

Free and Open Source UI Library for Vue 3 🤘
https://vuestic.dev
MIT License
3.32k stars 321 forks source link

VaDatePicker: allowed-date prop #4220

Closed m0ksem closed 1 month ago

m0ksem commented 1 month ago

We have allowed-days, allowed-months, allowed-years right now.

Right now, I need to do something like this: image

  const filterDateOlderThanToday = (d: Date) => {
    return d < new Date()
  }

And it doesn't work if you change month for allowed-days.

m0ksem commented 1 month ago

I don't know how implement this actually. When we select year, should we compare every day from 1970 to 2100 to check if there is available date?