Skip to main content

MultiCombo API Overview

Initialization

<script setup>
import { MultiCombo } from "@svar-ui/vue-core";

const dataset = [
{id:1, label:"First option"},
{id:2, label:"Second option"},
{id:3, label:"Third option"}
];
</script>

<template>
<MultiCombo :options="dataset"/>
</template>
tip
  • Visit the Features Guide to learn more about the control's functionality.
  • Explore the samples to visualize the available features.

MultiCombo Properties

checkboxesOptional. Defines whether MultiCombo options have checkboxes next to them
cssAdds a custom style to the MultiCombo control.
disabledOptional. Defines whether a MultiCombo is disabled
dropdownOptional. Defines the behavior and appearance of the multicombo dropdown
errorOptional. Defines whether error styling is applied to a MultiCombo
idOptional. Sets an id for a MultiCombo
keepTextOptional. Defines whether the filter text typed by the user is kept in the input after an option is selected
optionsOptional. Specifies a set of data items that will be used as MultiCombo options
placeholderOptional. Sets the text of the input's placeholder
textFieldOptional. Binds MultiCombo options to the input field by the specified key
textOptionsOptional. Specifies a set of data items that will be used in the input and hidden from dropdown
titleOptional. Sets a tooltip text with additional info about the control
tooltipOptional. Sets the tooltip text shown on hover when the control is wrapped in a Tooltip component
valueOptional. Specifies the selected values

MultiCombo Events

changeFires when a new value is selected in a multicombo