disabled
Description
Optional. Defines whether a radio button is disabledUsage
disabled?: boolean;
Default value
- true - a radio button is disabled
- false - (default) a radio button is enabled
Example
<template>
<RadioButton label="Disabled radio button" :disabled="true"/>
</template>
Details
It is also possible to set a radio button to the disabled state by declaring the property with no value:
<template>
<RadioButton disabled />
</template>
Related article: Setting the disabled state
Related sample: Radio Button