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
I cannot pass a callback with params to the directive.
So, this works v-click-outside="hideMenu" but this does not v-click-outside="handleMenuVisibility(false)"
v-click-outside="hideMenu"
v-click-outside="handleMenuVisibility(false)"
The text was updated successfully, but these errors were encountered:
Really need this feature
Sorry, something went wrong.
I found a workaround.
You could use v-click-outside="() => handleMenuVisibility(false)"
v-click-outside="() => handleMenuVisibility(false)"
I found a workaround. You could use v-click-outside="() => handleMenuVisibility(false)"
I had an issue with callback, so you need to pass another callback param
No branches or pull requests
I cannot pass a callback with params to the directive.
So, this works
v-click-outside="hideMenu"
but this does notv-click-outside="handleMenuVisibility(false)"
The text was updated successfully, but these errors were encountered: