mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
18 lines
383 B
Vue
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>
|