2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/docs/.vuepress/components/SlotSearch.vue
T
2021-08-01 12:30:50 -07:00

13 lines
235 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>