in vue2 i have this combobox element
<v-combobox
@change="SomeFunction"
v-model="search.name"
label="Search for items..."
/>
the function “SomeFunction” was called in three cases: when pressing enter, when selecting an item from a drop-down menu, and if, after writing text in the input, the user simply clicked on another part of the website.
How can I achieve the same result in Vue 3?