mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
a820f06d61
* docs: sort slots alphabetically
13 lines
234 B
Vue
13 lines
234 B
Vue
<template>
|
|
<v-select>
|
|
<template #search="{ attributes, events }">
|
|
<input
|
|
maxlength="1"
|
|
class="vs__search"
|
|
v-bind="attributes"
|
|
v-on="events"
|
|
>
|
|
</template>
|
|
</v-select>
|
|
</template>
|