Skip to content

Commit 1913dfb

Browse files
fix(recaptcha): test
1 parent 04ee275 commit 1913dfb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/Recaptcha.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ClientOnly>
33
<vue-recaptcha
44
ref="recaptcha"
5-
:site-key="site_key"
5+
:sitekey="site_key"
66
:loadRecaptchaScript="true"
77
@expired="is_captcha_validated = false"
88
@verify="submit_recaptcha"
@@ -19,6 +19,7 @@
1919
const { is_captcha_validated } = storeToRefs(cloud_store)
2020
2121
const site_key = useRuntimeConfig().public.RECAPTCHA_SITE_KEY
22+
console.log("site_key", site_key)
2223
2324
onMounted(() => {
2425
if (process.client) {

0 commit comments

Comments
 (0)