We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ee275 commit 1913dfbCopy full SHA for 1913dfb
components/Recaptcha.vue
@@ -2,7 +2,7 @@
2
<ClientOnly>
3
<vue-recaptcha
4
ref="recaptcha"
5
- :site-key="site_key"
+ :sitekey="site_key"
6
:loadRecaptchaScript="true"
7
@expired="is_captcha_validated = false"
8
@verify="submit_recaptcha"
@@ -19,6 +19,7 @@
19
const { is_captcha_validated } = storeToRefs(cloud_store)
20
21
const site_key = useRuntimeConfig().public.RECAPTCHA_SITE_KEY
22
+ console.log("site_key", site_key)
23
24
onMounted(() => {
25
if (process.client) {
0 commit comments