NuxtUI USelectMenu event issue with searchable
If I have searchable on USelectMenu, the click event on the options won't trigger
Here is the code:
without searchable, test() will be triggered, then selectCondition() will be triggered
with searchable, test() won't be triggered, selectCondition() will be triggered
```
<USelectMenu
v-model="model"
:options="options"
value-attribute="id"
@change="selectCondition($event)"
searchable <-- this cause the issue
>
<template #option="{option}">
<div @click="test($event)"></div>
</template>
</USelectMenu>
Here is the code:
without searchable, test() will be triggered, then selectCondition() will be triggered
with searchable, test() won't be triggered, selectCondition() will be triggered
```
<USelectMenu
v-model="model"
:options="options"
value-attribute="id"
@change="selectCondition($event)"
searchable <-- this cause the issue
>
<template #option="{option}">
<div @click="test($event)"></div>
</template>
</USelectMenu>
