title
Description
Optional. Sets a tooltip text with additional info about the controlUsage
title?: string;
Example
<template>
<MultiCombo
title="Invalid option"
:options="users"
textField="label"
error
>
<template v-slot="option">
{{ option.label }}
</template>
</MultiCombo>
</template>
Related article: Adding a title
Related sample: MultiCombo