2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-13 08:32:26 +03:00
Files
vue-select/docs/.vuepress/components/BetterNoOptions.vue
T
2021-08-01 12:30:50 -07:00

18 lines
383 B
Vue

<template>
<v-select>
<template v-slot:no-options="{ search, searching }">
<template v-if="searching">
No results found for <em>{{ search }}</em
>.
</template>
<em v-else style="opacity: 0.5">Start typing to search for a country.</em>
</template>
</v-select>
</template>
<script>
export default {
name: 'BetterNoOptions',
}
</script>