docs(form): fix closing of form tags in VeeValidate document (#171)

This commit is contained in:
Rishabh Dubey 2023-11-14 15:26:55 +05:30 committed by GitHub
parent 31a7198b70
commit 71f5ce3c04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,7 +209,7 @@ const onSubmit = form.handleSubmit((values) => {
<template>
<form @submit="onSubmit">
...
</Form>
</form>
</template>
```
@ -302,7 +302,7 @@ const onSubmit = form.handleSubmit((values) => {
<Button type="submit">
Submit
</Button>
</Form>
</form>
</template>
```