Open
Description
Describe the bug
Just like the disabled
prop on BFormGroup disables a child BFormSelect, setting the prop should also fully disable a child BFormInput.
The docs at Disabled form group say:
Setting the
disabled
prop will disable the rendered<fieldset>
and, on most browsers, will disable all the input elements contained within the fieldset.
<BFormGroup label="Enter your name" disabled>
<BFormInput />
</BFormGroup>
<br>
<BFormGroup label="Select an item" disabled>
<BFormSelect :options="options" />
</BFromGroup>
results in disabled select element, but not the input element:

Reproduction
https://stackblitz.com/edit/vue-kzvast9u?file=src%2FApp.vue
Used Package Manager
npm