I need to programmatically reset the selection in my a-select component after a specific event is triggered.
Here's an example of my a-select code snippet:
<a-select
style="marginTop: 8px;width: 20%"
@change="onChanged"
>
<a-select-option
v-for="test in tests"
v-bind:key="test.id"
:value="test.id"
>
{{ test.testName }}
</a-select-option>
</a-select>
I want to clear the selected option and display nothing, similar to this image https://i.stack.imgur.com/yC0XS.png
How can I achieve this in my situation?