icehaunter / vue3-datepicker

Simple datepicker component for Vue 3
https://icehaunter.github.io/vue3-datepicker/
MIT License
151 stars 151 forks source link

selected month is incorrect #118

Open ozgunn opened 8 months ago

ozgunn commented 8 months ago

when I use month-picker & select a month, after submit the "month" value is displayed as the previous month.

"version": "7.4.0",

<VueDatePicker v-model="form.start_date" month-picker auto-apply :placeholder="$t('text.select')">

for example: i select "May", "05/2023" appears on input. but after submit "month" becomes "4". if i choose "Jan", month becomes "0" etc..

Result: "start_date" => array:2 [▼ "month" => 4 "year" => 2023 ]