This commit is contained in:
Acid Chicken (硫酸鶏) 2020-04-28 14:55:12 +09:00
parent 7860839220
commit b862c055ae
No known key found for this signature in database
GPG Key ID: 5388F56C75B677A1
1 changed files with 12 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export default Vue.extend({
props: {
sitekey: {
type: String,
required: true,
required: true,
},
value: {
type: String,
@ -37,13 +37,22 @@ export default Vue.extend({
},
created() {
if (window.hcaptcha) {
if (window.hcaptcha) { // loaded
this.available = true;
} else {
const alreadyLoading = document.getElementById('hcaptcha');
if (alreadyLoading) { // loading
alreadyLoading.addEventListener('load', () => this.available = true);
return;
} // init
const script = document.createElement('script');
script.addEventListener('load', () => this.available = true);
script.src = 'https://hcaptcha.com/1/api.js?render=explicit';
script.async = true;
script.id = 'hcaptcha';
script.src = 'https://hcaptcha.com/1/api.js?render=explicit';
document.head.appendChild(script);
}
},