mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-23 03:54:04 +03:00
17 lines
376 B
Vue
17 lines
376 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 style="opacity: 0.5;" v-else>Start typing to search for a country.</em>
|
|
</template>
|
|
</v-select>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BetterNoOptions',
|
|
};
|
|
</script>
|