I am looking to trigger a dropdown change event within a Vue.js method.
<select id="idDropdown" v-model="Result.Value" v-on:change.prevent="changeSelection($event, 'somevalue')">
How can I call the above `changeSelection()` method when the dropdown value changes in any Vue.js method and pass the `$event` variable?
I have 2 dropdown buttons, and when the model value changes through code like this `Result.Value = 10`, then I want to trigger the `changeSelection` method to bind some data in the second dropdown.