Vuetify Version: 2.2.20
Vue Version: 2.6.11
Browsers: Chrome 81.0.4044.129
OS: Windows 10
Create a v-form
Insert either a v-select or v-autocomplete with the prop :multiple="true" inside the form.
Validate the form
The form will be valid, even if there is no option selected in the multiple select/autocomplete.
The form should not be valid until an option has been selected
The form is valid
https://codepen.io/matt-h/pen/PoPjEgX
I have tested on 2.2.25 and the issue still persists.
Tested with both v-select and v-autocomplete
Used :multiple="true" and multiple
!![] resolves to true
:rules="[v => !!(v && v.length) || 'Item is required']"
!![]resolves totrue
:rules="[v => !!(v && v.length) || 'Item is required']"
Thank you @jacekkarczmarczyk for your help.
Most helpful comment
!![]resolves totrue:rules="[v => !!(v && v.length) || 'Item is required']"