JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 31
  • Score
    100M100P100Q84851F
  • License MIT

ARCaptcha vue3 component

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (arcaptcha-vue3) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    ARCaptcha Vue

    ARCaptcha Component Library for Vue3.

    Installation

    You can install this library via npm with:

    • npm install arcaptcha-vue --save

    or via yarn:

    • yarn add arcaptcha-vue

    Basic Usage

    -:

    <template>
        <arcaptcha-vue site_key="site_key"></arcaptcha-vue>
    </template>
    
    <script>
      import ArcaptchaVue from 'arcaptcha-vue';
      export default {
        ...
        components: { ArcaptchaVue }
      };
    </script>

    Props

    Name Values/Type Required Default Description
    site-key string Yes - 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
    invisible Boolean NO False This allows you to use invisible captcha for you forms
    lang string NO fa This allows you to choose language by this prop. you can choose 'en' or 'fa' for english and persion language
    theme string NO light This allows you to choose theme for your widget. The themes are light and dark
    color String No normal Color of every colored element in widget and challenge.
    callback Function NO null This function would be called after solving captcha
    rendered_callback Function NO null This function would be called after rendering captcha
    error_callback Function NO null This function would be called after error
    reset_callback Function NO null This function would be called after reseting captcha
    expired_callback Function NO null This function would be called after expiring
    chlexpired_callback Function NO null This function would be called after challange expiration

    Methods

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

    How can I get a sitekey?

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