mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
::: tip 🚧
|
|
This section of the guide is a work in progress! Check back soon for an update.
|
|
Vue Select currently offers quite a few scoped slots, and you can check out the
|
|
[API Docs for Slots](../api/slots.md) in the meantime while a good guide is put together.
|
|
:::
|
|
|
|
### Scoped Slot `option`
|
|
|
|
vue-select provides the scoped `option` slot in order to create custom dropdown templates.
|
|
|
|
```html
|
|
<v-select :options="options" label="title">
|
|
<template v-slot:option="option">
|
|
<span :class="option.icon"></span>
|
|
{{ option.title }}
|
|
</template>
|
|
</v-select>
|
|
```
|
|
|
|
Using the `option` slot with props `"option"` provides the current option variable to the template.
|
|
|
|
<CodePen url="NXBwYG" height="500"/>
|
|
|
|
### Improving the default `no-options` text
|
|
|
|
The `no-options` slot is displayed in the dropdown when `filteredOptions === 0`. By default, it
|
|
displays _Sorry, no matching options_. You can add more contextual information by using the slot
|
|
in your own apps.
|
|
|
|
<BetterNoOptions />
|
|
|
|
<<< @/.vitepress/components/BetterNoOptions.vue
|