Reputation: 13393
I have two questions regarding error-labels of q-field (in combination with q-input) when using Quasar Framework:
error-label="Please type a valid name"
I would like to show the (multiple) actual validation errors vuelidate
finds, so e.g. more in line with: "Name must be longer then 4
characters and no numericals". How would I do that using the
error-label
quasar provides?Upvotes: 1
Views: 2557
Reputation: 2137
Try <q-component :content-css="{minWidth: '80vw', minHeight:
'80vh'}">
(you should set a minimum width and/or height to avoid
this behavior)
Upvotes: 1