<USelectMenu
v-model:model-value="selectedCountry"
:items="countries"
value-key="id"
placeholder="Select Country"
:ui="{
base: 'p-4 rounded-2xl',
placeholder: 'text-sm',
}"
>
<template #trailing>
<UButton
v-show="selectedCountry"
variant="link"
icon="i-heroicons-x-mark-20-solid"
:padded="false"
@click.stop="clearSelection"
/>
</template>
</USelectMenu>
<USelectMenu
v-model:model-value="selectedCountry"
:items="countries"
value-key="id"
placeholder="Select Country"
:ui="{
base: 'p-4 rounded-2xl',
placeholder: 'text-sm',
}"
>
<template #trailing>
<UButton
v-show="selectedCountry"
variant="link"
icon="i-heroicons-x-mark-20-solid"
:padded="false"
@click.stop="clearSelection"
/>
</template>
</USelectMenu>