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 68bf4ad commit 48ad73fCopy full SHA for 48ad73f
components/Recaptcha.vue
@@ -1,18 +1,19 @@
1
<template>
2
- <vue-recaptcha
3
- ref="recaptcha"
4
- :sitekey="site_key"
5
- :loadRecaptchaScript="true"
6
- @expired="is_captcha_validated = false"
7
- @verify="submit_recaptcha"
8
- align-self="center"
9
- />
+ <ClientOnly>
+ <vue-recaptcha
+ ref="recaptcha"
+ :sitekey="site_key"
+ :loadRecaptchaScript="true"
+ @expired="is_captcha_validated = false"
+ @verify="submit_recaptcha"
+ align-self="center"
10
+ />
11
+ </ClientOnly>
12
</template>
13
14
<script setup>
15
import { VueRecaptcha } from "vue-recaptcha"
16
- const websocket_store = use_websocket_store()
17
const cloud_store = use_cloud_store()
18
const { is_captcha_validated } = storeToRefs(cloud_store)
19
0 commit comments