Here is an illustration fiddle:
https://jsfiddle.net/40fxcuqd/
Initially, it shows the name "Carl"
If I choose Carol, Clara, etc., an event will be triggered and data will be logged to the console.
However, if I click on the dropdown and select "Carl" again, no event will be triggered, and nothing will be displayed in the console.
The event listener being used is @input:
<select v-model="selectedPerson" @input="myEvent()">
How can I ensure that an event is fired every time a selection is made, even if it's the same value?
Edit:
To clarify, when "Carl" is initially selected:
https://i.sstatic.net/qIqYU.png
and then the dropdown is opened:
https://i.sstatic.net/2qUbT.png
and Carl is selected once more, I would like an event to be triggered and information logged to the console. Currently, no event is triggered and nothing is printed to the console.