vue-bulma / datepicker

Datepicker Component for Vue Bulma
MIT License
115 stars 56 forks source link

Leap Year issue with dateFormat: 'd.m.Y' #78

Closed sofuxro closed 5 years ago

sofuxro commented 5 years ago

when I select 29 Feb 2020 it actually selects 1st of March 2020.

if I change the format to Y.m.d - it works (this is what confuses me)

any ideas ?

sofuxro commented 5 years ago

this:

parseDate:  function (dateStr) { return moment(dateStr, 'DD.MM.YYYY').toDate(); },
formatDate: function (dateObj) { return moment(dateObj).format('DD.MM.YYYY'); },

fixed the issue