0.4.0 • Published 1 year ago

arcaptcha-vue3 v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ARCaptcha Vue3

ARCaptcha Component Library for Vue3.

Installation

You can install this library via npm with:

  • npm i arcaptcha-vue3

Usage

  • Basic:
<script setup>
import arcaptchaVue3 from "arcaptcha-vue3";

function callbackDef() {
// This function would be called after solving captcha
}
function expired_callbackDef() {
  //This function would be called after expiring
}
</script>

<template>
<div>
  <arcaptchaVue3
    :callback="callbackDef"
    :expired_callback="expired_callbackDef"
    site_key="YOUR_SITE_KEY"
  >
  </arcaptchaVue3>

  <!-- <arcaptchaVue3 site_key="bdopsptc2b"></arcaptchaVue3> -->
</div>
</template>
  • Invisible:
<template>
    <div>
        <arcaptchaVue3 :callback="callbackDef" :expired_callback="expired_callbackDef" site_key="YOUR_SITE_KEY" :invisible="true" ref="widget"></arcaptchaVue3>

        <button @click="execute">Load invisible captcha</button>
        <button @click="reset">reset invisible captcha</button>
    </div>
</template>

<script>
import arcaptchaVue3 from "arcaptcha-vue3";
import { ref } from 'vue'

export default {
    components: {
        arcaptchaVue3
    },
    setup() {
      const widget = ref(null)
      return {widget}
    },
    methods: {
        expired_callbackDef() {
            //This method would be called after expiring
        },
        callbackDef(token) {
            // This method would be called after solving captcha
            console.log('Captcha Solved with token:', token)
        },
        execute() {
            this.$refs.widget.execute();
        },
        reset() {
          this.$refs.widget.reset();
        },
    }
};
</script>
  • Invisible with promise:
<template>
  <div>
    <arcaptchaVue3 :callback="callbackDef" :expired_callback="expired_callbackDef" site_key="YOUR_SITE_KEY" :invisible="true" ref="widget">               </arcaptchaVue3>

    <button @click="execute">Load invisible captcha</button>
    <button @click="reset">reset invisible captcha</button>
  </div>
</template>

<script>
  import arcaptchaVue3 from "arcaptcha-vue3";
  import { ref } from 'vue'

  export default {
    components: {
        arcaptchaVue3
    },
    setup() {
      const widget = ref(null)
      return {widget}
    },
    methods: {
        expired_callbackDef() {
            //This method would be called after expiring
        },
        callbackDef() {
            // This method would be called after solving captcha
        },
        execute() {
            this.$refs.widget.execute().then((token) => {
                console.log("Captcha Solved! token:", token);
            });
        },
        reset() {
          this.$refs.widget.reset();
        },
      }
    };
</script>

Props

NameValues/TypeRequiredDefaultDescription
site_keystringYes-This is your sitekey, this allows you to load captcha. If you need a sitekey, please visit Arcaptcha, and sign up to get your sitekey
invisibleBooleanNOFalseThis allows you to use invisible captcha for you forms
langstringNOfaThis allows you to choose language by this prop. you can choose 'en' or 'fa' for english and persion language
themestringNOlightThis allows you to choose theme for your widget. The themes are light and dark
colorStringNonormalColor of every colored element in widget and challenge.
callbackFunctionNOnullThis function would be called after solving captcha
rendered_callbackFunctionNOnullThis function would be called after rendering captcha
closed_callbackFunctionNOnullThis function would be called after user decides to close the challenge
error_callbackFunctionNOnullThis function would be called after error
reset_callbackFunctionNOnullThis function would be called after reseting captcha
expired_callbackFunctionNOnullThis function would be called after expiring
chlexpired_callbackFunctionNOnullThis function would be called after challange expiration

Events

NameDescription
onErrorIf there is any issue with loading api.js file this event will be emitted

Methods

MethodDescription
execute()Programmatically trigger a challenge request. You can use this, to load invisible captcha after trigger a button
reset()Reset the current challenge

How can I get a sitekey?

Sign up at ARCaptcha to get your sitekey. Check documentation for more information.

0.4.0

1 year ago

0.3.0

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.2.7

2 years ago

0.2.6

2 years ago

0.2.9

2 years ago

0.2.8

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.5

2 years ago

0.1.6

2 years ago

0.2.4

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago