After having read the BootstrapVue documentation for the "form textarea" component am I right that <b-form-textarea>
does not support the following attributes to be set?
invalidFeedback
(as opposed to e.g.<b-form-input>
)label
If this is correct is there any easy way to add these attributes?
The following pug template shows the textarea but not the label or the invalid message.
b-form-textarea#message(
v-model="form.message"
:label="Your message"
:state="!$v.form.message.$invalid"
:invalidFeedback="Please enter a message."
:placeholder="$t('messagePlaceholder')"
)