How can I retrieve the id of a select element in Vue.js when an option is selected using v-on:change event?
This is my Vue code:
<b-form-select id="1749614592" :
options="{'0': 'Default','1': 'Stored'}"
v-on:change="isOnChange($event)">
</b-form-select>
And here is my script:
methods: {
isOnChange: function(event) {
console.log(event.target.parentNode);
}
},