-
I using the component in a modal, and when the modal opens, I'd like to prompt the user with a list of options already visible, without the user needing to focus on the bar. I looked at the guide about events, but events are emitted, instead I would like the dropdown to listen to an event - or just make it visibile. It is different behaviour than :closeOnSelect="false" , because user is still to select an item. Any possibility / workaround to achieve this behaviour already? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Just add ref to your component After that just use $refs:
This should help |
Beta Was this translation helpful? Give feedback.
Just add ref to your component
<v-select ref="dropdown"> </v-select>
After that just use $refs:
This should help