-
Problem:
Possible solution:
|
Beta Was this translation helpful? Give feedback.
Answered by
kamerat
Nov 17, 2020
Replies: 1 comment
-
You can pass the ids yourself: <v-select
id="selector1"
v-model="selected"
:options="options"
@input="onInput($event, 'selector1')"
/>
onInput(input, id) {
console.log(input, id) // 'foo' 'selector1'
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sagalbot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can pass the ids yourself: