Dobromir Hristov

Results 166 comments of Dobromir Hristov

Give the latest version a try please.

Vuelidate 2 has lazy validation, but we cannot pause validators on user request. Those always run on every change of the model.

Looks like a Vue thing. If the field is dirty, it should validate.

Because I think email fields won't emit a change, until a valid email is used.

@MadsBrink what is wrong with ```js validations(){ return { texts: { $each:{ text: { required }, visible: { isBoolean } } } } } ```

Then you would have to use some sort of custom validator function.

If this is resolved could we close the issue?

Then you are approaching this the wrong way... `$each` is not meant to work that way. Restructure your data so collections with similar validation rules are kept together, under the...

I wonder how your backend validates this 😆, the complication there is the same. You would have to instantiate different validator schemas for each State, in your collection, right? You...

Hey there. It has been mostly stable, but I never changed it beyond the alpha, because I was not sure if we are ready and satisfied with the API. I...