The function isn't running when I change the selected value. How do i fix this? Here is my code:
<q-select
v-model="single"
:options="['def', 'abc', '456', '123']"
use-chips
label="Select One"
@input="showChannel()"
/>
JavaScript code:
methods: {
showChannel(val) {
console.log(val);
}
}