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

Commit

Permalink
📝 docs(en): wasn't using full path to valid (#225) by @SERVANT14
Browse files Browse the repository at this point in the history
  • Loading branch information
marktinsley authored and kazupon committed May 13, 2016
1 parent cf709a0 commit fd60817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/lazy.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The following example waits for the comment contents to be loaded before evaluat
<input type="text" :value="comment" v-validate:comment="{ required: true, maxlength: 256 }"/>
<span v-if="$validation1.comment.required">Required your comment</span>
<span v-if="$validation1.comment.maxlength">Too long comment !!</span>
<button type="button" value="save" @click="onSave" v-if="valid">
<button type="button" value="save" @click="onSave" v-if="$validation1.valid">
</validator>
</div>
```
Expand Down

0 comments on commit fd60817

Please sign in to comment.