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
Hello Thanks for the amazing effort that you have put in this package,
I have a custom api plugin and I want to send recaptcha tokens on any POST request automatically this is a sample code to demonstrate:
import { useChallengeV3 } from 'vue-recaptcha' if(payload && ['POST', 'PUT', 'PATCH'].includes(options.method)) { const { execute } = useChallengeV3(actionType) payload.RT = await execute()
but I can't use useChallengeV3 outside of a setup function or .vue file because it's a composable, Is there any workarounds ?
The text was updated successfully, but these errors were encountered:
Maybe try to wrap useChallengeV3 with runWithContext https://vuejs.org/api/application.html#app-runwithcontext
useChallengeV3
Sorry, something went wrong.
No branches or pull requests
Describe the feature
Hello Thanks for the amazing effort that you have put in this package,
I have a custom api plugin and I want to send recaptcha tokens on any POST request automatically this is a sample code to demonstrate:
but I can't use useChallengeV3 outside of a setup function or .vue file because it's a composable, Is there any workarounds ?
The text was updated successfully, but these errors were encountered: