We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to programically focus() multiselect field? I am using vue3 and the solution given in the readme does not work. Thank you
The text was updated successfully, but these errors were encountered:
@WhatArmy2 That way worked for me:
<script setup> // ... const input = ref(); const focusOnInput = () => { input.value.$refs.input.focus(); } </script> <template> <Multiselect ref="input" //... /> </template>
Btw, this kind of question is usually answered faster on their Discord channel
Sorry, something went wrong.
No branches or pull requests
How to programically focus() multiselect field?
I am using vue3 and the solution given in the readme does not work.
Thank you
The text was updated successfully, but these errors were encountered: