vue-select
Version:
A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery.
17 lines (13 loc) • 483 B
Markdown
select provides the scoped `option` slot in order to create custom dropdown templates.
```html
<v-select :options="options" label="title">
<template slot="option" slot-scope="option">
<span :class="option.icon"></span>
{{ option.title }}
</template>
</v-select>
```
Using the `option` slot with `slot-scope="option"` gives the
provides the current option variable to the template.
[](codepen://sagalbot/NXBwYG?height=500)
vue-