Unable to validate whether the v-rating question has been answered by the user
Accepts an array of functions that take an input value as an argument and return either true / false or a string with an error message
It's a good idea, I need this too.
You can just use the v-input as a wrapper to add validation:
<v-input :value="value" :rules="rules">
<v-rating v-model="value" />
</v-input>
Most helpful comment
You can just use the
v-inputas a wrapper to add validation: