This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Captcha.vue

33 lines
759 B
Vue
Raw Normal View History

2021-08-07 03:03:49 -07:00
<template>
2021-08-09 23:50:22 -07:00
<div style="height: 73px"></div>
2021-08-07 03:03:49 -07:00
</template>
<script>
import dark from "../plugins/dark";
export default {
mixins: [dark],
props: {
value: {},
},
2021-08-09 23:50:22 -07:00
async mounted() {
2021-08-07 03:03:49 -07:00
if (!process.client) {
return false;
}
2021-08-09 23:50:22 -07:00
await this.$loadScript('hcaptcha', 'https://js.hcaptcha.com/1/api.js');
window.hcaptcha.render(this.$el, {
sitekey: process.env.HCAPTCHA_SITEKEY,
theme: this.detectDark() ? 'dark' : 'light',
callback: this.solved,
});
2021-08-07 03:03:49 -07:00
},
2021-08-09 23:50:22 -07:00
methods: {
solved(token) {
this.$emit('input', token);
},
}
2021-08-07 03:03:49 -07:00
}
</script>