I am currently working on a project using Vue.js 3 with Typescript and vee-validate. I encountered an error while building the project.
Error message: TS7031 - Semantic error. Binding element 'field' implicitly has an 'any' type.
The error is occurring because I am using v-slot with vee-validate values in the Field vee-validate component.
<Field
name="fieldDate"
:label="libelle"
:rules="`formatDateValide:${formatDate}|dateBetween:${formatDate},${dateMin},${dateMax}`"
v-slot="{field, meta}"
>
How can I specify the types of these values or how can I disable this error? Any help would be appreciated. Thank you.