disabled
Description
Optional. Defines whether a MultiCombo is disabledUsage
disabled?: boolean;
Parameters
- true - a multicombo is disabled
- false - (default) a multicombo is enabled
Example
<template>
<MultiCombo placeholder="Select an option" :disabled="true"/>
</template>
Details
It is also possible to set a MultiCombo to the disabled state by declaring the property with no value:
<template>
<MultiCombo disabled />
</template>
Related article: Setting the disabled state
Related sample: MultiCombo