::: tip VueSelect leverages scoped slots to allow for total customization of the presentation layer. Slots can be used to change the look and feel of the UI, or to simply swap out text. ::: ## Selected Option(s) ### `selected-option` #### Scope: - `option {Object}` - A selected option ```html {{ getOptionLabel(option) }} ``` ### `selected-option-container` #### Scope: - `option {Object}` - A selected option - `deselect {Function}` - Method used to deselect a given option when `multiple` is true - `disabled {Boolean}` - Determine if the component is disabled - `multiple {Boolean}` - If the component supports the selection of multiple values ```html {{ getOptionLabel(option) }} ``` ## Component Actions ### `spinner` ```html
Loading...
``` ## Dropdown ### `option` #### Scope: - `option {Object}` - The currently iterated option from `filteredOptions` ```html {{ getOptionLabel(option) }} ```