From 63560d9cabe2004bf532ace8ee5f8d5ead567b90 Mon Sep 17 00:00:00 2001 From: Corey Wilson Date: Sat, 15 Apr 2017 12:23:03 -0400 Subject: [PATCH] corrected checkFieldForError example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78dc2f3..a69f7a3 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Vue.component('user-registration-form', { methods: { checkFieldForError(field) { - return this.userRegistrationForm.errors.has('field'); + return this.userRegistrationForm.errors.has(field); } }