I'm trying to use vee-validate to check if the user is typing a valid date in a bootstrap-vue date input. Followed the vee-validate docs, but seems not to have the expected behaviour
Not working with valid dates nor invalid dates like 31/06/2019 (dd/MM/yyyy)
Here is a codepen example:
https://codepen.io/anon/pen/wVewvK
<b-form-input v-model="selectedDate"
placeholder="Enter date"
v-validate="'date_format:dd/MM/yyyy'"
name="sdate"
type="date">
</b-form-input>
Docs:
https://bootstrap-vue.js.org/docs/reference/validation/#veevalidate
https://baianat.github.io/vee-validate/guide/rules.html#date-format