Skip to content

Commit

Permalink
docs: incorrect vuelidate instance naming (v$ vs $v) (#976)
Browse files Browse the repository at this point in the history
  • Loading branch information
christianz committed Dec 20, 2021
1 parent dc56201 commit 077e8f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -189,7 +189,7 @@ The easiest way to display errors is to use the form's top level `$errors` prope
```vue
<p
v-for="(error, index) of $v.$errors"
v-for="(error, index) of v$.$errors"
:key="index"
>
<strong>{{ error.$validator }}</strong>
Expand All @@ -204,7 +204,7 @@ You can also check for errors on each form property:

```vue
<p
v-for="(error, index) of $v.name.$errors"
v-for="(error, index) of v$.name.$errors"
:key="index"
>
<!-- Same as above -->
Expand Down

0 comments on commit 077e8f6

Please sign in to comment.