I'm building an input component to work with vee-validate.
for more convenience, I want to use validation rules as a props for this.
Every thing is ok when I use v-model directive
on parent. but, with value
property; after writing in the field and validating, input value reset to it's parent.
This is logical? if not, how can I solve this problem without v-model
?
Note that:
1) - Validations events are 'input' and 'blur'
2) - I never want to setv-on:input
event on parent