Posts

Showing posts with the label vee-validate

Vue.js and Vee Validate - How to update error message with error from an API

Image
Clash Royale CLAN TAG #URR8PPP Vue.js and Vee Validate - How to update error message with error from an API I am trying to set the error message from the vee-validate to one from an API. <div class="col-md-12"> <label for="company-contact-name" class="label-input">Company Contact Name</label> <input v-validate="validations.user.name" v-model="data.user.name" id="company-contact-name" class="form-control" type="text" name="name" placeholder="Enter contact name" /> <div id="name-error" class="msg-error text-danger">{{ errors.first('name') }}</div> </div> <div class="col-md-12"> <label for="email" class="label-input">E-mail address</label> <input v-validate="validations.user.email" v-model="data.user.email" id="email" class="fo...