nuxt-hcaptcha

hCaptcha module for Nuxt.js

Usage no npm install needed!

<script type="module">
  import nuxtHcaptcha from 'https://cdn.skypack.dev/nuxt-hcaptcha';
</script>

README

HCaptcha logo Nuxt logo

nuxt-hcaptcha

this package is in development and should not be used yet.

hCaptcha module for Nuxt.js.

Development Status

  • Immediate Goals
    • Something
  • Coming Soon
    • Something

Installation

  • Add dependency to your project
npm i nuxt-hcaptcha
  • Add module to nuxt and configure it providing inline options
// nuxt.config.js
{
  modules: [
    [
      'nuxt-hcaptcha', {
        /* hCaptcha options */
      }
    ],
  ]
}
  • Or using top-level options
{
  modules: [
    'nuxt-hcaptcha',
  ],

  hcaptcha: {
    /* hCaptcha options */
  },
}

Usage

<template></template>

<script>
export default {}
</script>

Something

lorem ipsum

<template></template>

<script>
export default {}
</script>

This package was inspired by @nuxtjs/recaptcha