vue3-datepicker
vue3-datepicker copied to clipboard
Typeable prop not working with v-model
When using v-model with the prop :typeable="true", the value is parsed as soon as the format is recognized which results in the following behavior:

This may be related to #55 , but unfortunately the issue is in russian, and i do not speak russian :)
Here is the code sample:
<template>
<label for="" >
<Datepicker
v-model="dateValue"
inputFormat="dd/MM/yyyy"
:typeable="true"
/>
</label>
</template>
<script>
import Datepicker from "vue3-datepicker";
import {ref} from "vue";
export default {
components: {
Datepicker
},
setup(){
const dateValue = ref(null);
return {dateValue}
}
}
</script>