alireza-ab / vue-persian-datepicker

A datepicker component for select Persian date
https://alireza-ab.ir/datepicker
MIT License
44 stars 9 forks source link

select just year or month #13

Closed Mohammad99k closed 2 years ago

Mohammad99k commented 2 years ago

Hi Is there an option to show only year or month? and another question how to disable all days except first of week (Saturday)?

alireza-ab commented 2 years ago
  1. No, there isn't. maybe, I'll add it.

  1. Use a function.
    <date-picker :disable="disableDates" />
    methods: {
    disableDates(val) {
        // jalali (hijri) calendar
        return val.date('jd') != 0;
        // gregorian calendar
        // return val.date('d') != 0;
        // automatic detection
        // return val.date('?d') != 0;
    }
    }
Mohammad99k commented 2 years ago

I hope you add it soon. thank you very much