Ru-Captcha-v3 is a lightweight, easy-to-integrate Vue 3 captcha component library designed to offer a simple and efficient solution for implementing captcha functionalities, enhancing the security of your applications.
- Install the component library:
npm i ru-captcha-v3
- Import and use in your Vue project:
import { createApp } from 'vue'
import App from './App.vue'
import RuCaptchav3 from "ru-captcha-v3/dist/ru-captcha-v3"
const app = createApp(App)
app.use(RuCaptchav3)
app.mount('#app')