Skip to content

Commit 109bd6c

Browse files
committed
Fix typo, version bump: 1.0.0 => 1.0.1
1 parent b16e430 commit 109bd6c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ npm install google-recaptcha-vue3
3232
1. **Import the component:**
3333

3434
```JavaScript
35-
import GoogleRecaptcha from 'google-recaptcha-v3';
35+
import GoogleRecaptcha from 'google-recaptcha-vue3';
3636
```
3737

3838
2. **Integrate into your component template:**
@@ -50,7 +50,7 @@ npm install google-recaptcha-vue3
5050
5151
<script setup>
5252
import { ref } from 'vue';
53-
import GoogleRecaptcha from 'google-recaptcha-v3';
53+
import GoogleRecaptcha from 'google-recaptcha-vue3';
5454
5555
const recaptchaRef = ref(null);
5656
@@ -107,7 +107,7 @@ npm install google-recaptcha-vue3
107107
1. **Import the component:**
108108

109109
```JavaScript
110-
import GoogleRecaptcha from 'google-recaptcha-v3';
110+
import GoogleRecaptcha from 'google-recaptcha-vue3';
111111
```
112112

113113
2. **Use it in your component template:**
@@ -125,7 +125,7 @@ npm install google-recaptcha-vue3
125125
126126
<script setup>
127127
import { ref } from 'vue';
128-
import GoogleRecaptcha from 'google-recaptcha-v3';
128+
import GoogleRecaptcha from 'google-recaptcha-vue3';
129129
130130
const handleToken = (token) => {
131131
console.log('Token:', token);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-recaptcha-vue3",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"type": "module",
55
"description": "A lightweight Vue 3 component library supporting Google reCAPTCHA v2 and v3 integration.",
66
"main": "google-recaptcha-vue3.umd.js",

0 commit comments

Comments
 (0)