Skip to content
This repository has been archived by the owner on Dec 25, 2017. It is now read-only.

Commit

Permalink
docs(READEM): more update error message section
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Feb 18, 2016
1 parent a7af6de commit 6f2da48
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,7 @@ In the above example, we used `v-for` directive to enumerate `errors` of validat
}"/>
</div>
<div class="errors">
<validator-errors :validation="$validation1">
</validator-errors>
<validator-errors :validation="$validation1"></validator-errors>
</div>
</validator>
```
Expand All @@ -608,9 +607,15 @@ In the above example, it's rendered the following:
<input id="password" type="text">
</div>
<div class="errors">
<p>password: your password short too !!</p>
<p>password: required you password !!</p>
<p>username: required you name !!</p>
<div>
<p>password: your password short too !!</p>
</div>
<div>
<p>password: required you password !!</p>
</div>
<div>
<p>username: required you name !!</p>
</div>
</div>
```

Expand Down

0 comments on commit 6f2da48

Please sign in to comment.