vue-month-picker icon indicating copy to clipboard operation
vue-month-picker copied to clipboard

with default month && year when you select a month, I take the next one

Open pakond opened this issue 2 years ago • 1 comments

with default month year and max-date min-date when you select a month, I take the next one.

<month-picker lang="es" :max-date="maxDate" :min-date="minDate" default-month="11" default-year="2020" @input="changeStartDate" />

imagen clicking Febrero

pakond avatar Feb 04 '22 10:02 pakond

Hi. Can you try sending number values instead of strings? Eg.

<month-picker
  lang="es"
  :max-date="maxDate"
  :min-date="minDate"
  :default-month="11"
  :default-year="2020"
  @input="changeStartDate"
/>

And on v.1.6.0?

kleinrein avatar Sep 26 '22 20:09 kleinrein