Closed
Description
Describe the bug
If typing 01/01/1970 in the text-input, the date picker selects the day correctly.
If typing 01/01/1971 the date picker does not select the day.
To Reproduce
Playground.vue code (with v 11.0.1
)
<template>
<div>
<Datepicker
v-model="date"
format="MM/dd/yyyy"
preview-format="MM/dd/yyyy"
text-input
range
/>
</div>
</template>
<script setup>
import { ref } from 'vue';
import Datepicker from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css';
const date = ref();
</script>