[Vuejs]-When using vee-validate, A filed is under a scope.This.errors.first('field') does not work

0👍

When a field has a scope, you need to reference it with that scope:

this.errors.first("s.s1")

Check out the code here: https://baianat.github.io/vee-validate/examples/scopes.html

Leave a comment