0.0.2 • Published 3 years ago

nuxt-hcaptcha v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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