Skip to content

Commit

Permalink
✏️ Fixed indentation in README.md with examples
Browse files Browse the repository at this point in the history
  • Loading branch information
IamSwap committed Mar 15, 2020
1 parent 92d030e commit 3acae8a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ Create a Vue component for the form and submit reCAPTCHA token using form like t

```vue
<template>
<form @submit.prevent="onFormSubmit()" ref="contactform">
<form @submit.prevent="onFormSubmit()" ref="contactform">
<input type="text" name="name" placeholder="Your Name"/>
<input type="email" name="email" placeholder="Your Email"/>
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">Submit</button>
</form>
<button type="submit">Submit</button>
</form>
</template>
<script>
Expand Down Expand Up @@ -93,7 +93,7 @@ If you are using [vue-recaptcha](https://github.com/DanSnow/vue-recaptcha) plugi

```vue
<template>
<form @submit.prevent="onFormSubmit()" ref="contactform">
<form @submit.prevent="onFormSubmit()" ref="contactform">
<input type="text" name="name" placeholder="Your Name"/>
<input type="email" name="email" placeholder="Your Email"/>
<textarea name="message" placeholder="Your Message"></textarea>
Expand All @@ -105,7 +105,7 @@ If you are using [vue-recaptcha](https://github.com/DanSnow/vue-recaptcha) plugi
:loadRecaptchaScript="true"
/>
<button type="submit">Submit</button>
</form>
</form>
</template>
<script>
Expand Down

0 comments on commit 3acae8a

Please sign in to comment.