From 0bb5302b8e4a50438d1bf480988b55be8eddd414 Mon Sep 17 00:00:00 2001 From: fabienbancharel Date: Sun, 24 Apr 2016 00:20:47 +0200 Subject: [PATCH 1/4] typo correction for "password" (#201) --- docs/en/errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/errors.md b/docs/en/errors.md index 5fdf266..a2df69b 100644 --- a/docs/en/errors.md +++ b/docs/en/errors.md @@ -300,7 +300,7 @@ new Vue({ var resource = this.$resource('/user/:id') resource.save({ id: this.id }, { username: this.username, - passowrd: this.new + password: this.new }, function (data, stat, req) { // something handle success ... // ... From a9eb366dfbd3f51c10adca14ddd3a53e43cc8300 Mon Sep 17 00:00:00 2001 From: Davide Marchetti Date: Sun, 24 Apr 2016 16:51:44 +0200 Subject: [PATCH 2/4] Fix typo and model value (#202) --- docs/en/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api.md b/docs/en/api.md index 33879ee..9cc00f4 100644 --- a/docs/en/api.md +++ b/docs/en/api.md @@ -200,7 +200,7 @@ var resource = this.$resource('/user/:id') resource.save({ id: this.id }, { username: this.username, - passowrd: this.new + password: this.password.new }, function (data, stat, req) { // something handle success ... // ... From c9dc2604bed23bf23296889c0980f5c405f02533 Mon Sep 17 00:00:00 2001 From: Weihong Guan Date: Sun, 1 May 2016 06:07:39 +0800 Subject: [PATCH 3/4] fix typo 'mesage' (#207) --- docs/en/errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/errors.md b/docs/en/errors.md index a2df69b..b7e6cf2 100644 --- a/docs/en/errors.md +++ b/docs/en/errors.md @@ -43,7 +43,7 @@ Also, Error message can be used with `v-for`:
  • -

    {{error.field}}: {{error.mesage}}

    +

    {{error.field}}: {{error.message}}

From adb206c2c7449c0170fbbc9de3f16c0354261243 Mon Sep 17 00:00:00 2001 From: Ryan Farrell Date: Sat, 30 Apr 2016 18:07:57 -0400 Subject: [PATCH 4/4] typo fix (#203) --- docs/en/events.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/events.md b/docs/en/events.md index 7049df5..2648baa 100644 --- a/docs/en/events.md +++ b/docs/en/events.md @@ -72,11 +72,11 @@ new Vue({ You can be handled the event that has occured in the various top-level validation properties: -- `valid`: occure when validation result of **top-level** became valid -- `invalid`: occure when validation result of **top-level** became invalid -- `touched`: occure when **top-level** detected `blur` at least once -- `dirty`: occure when the value of **top-level** changed from initial value at least once -- `modified`: occure when the value of **top-level** changed from initial value +- `valid`: occurs when validation result of **top-level** became valid +- `invalid`: occurs when validation result of **top-level** became invalid +- `touched`: occurs when **top-level** detected `blur` at least once +- `dirty`: occurs when the value of **top-level** changed from initial value at least once +- `modified`: occurs when the value of **top-level** changed from initial value ```html