As far as I know, aria-required and aria-invalid attributes are positioned on the input tag where you embed the v-validate attribute. Eg.
<input class="a" type="text" v-validate="'required'">
will manifest itself as:
<input class="a" type="text" aria-required="true" aria-invalid>
in the DOM.
If I had a div around my input, is it possible for the aria attributes to manifest in the div? So that it will look like:
<div class="b" aria-required="'true'" aria-invalid>
<input class="a" type="text">
</div>