From acff77880f42d6c0024e9014d136593382bc60ff Mon Sep 17 00:00:00 2001 From: Caleb Kester Date: Mon, 2 Oct 2017 15:48:17 -0500 Subject: [PATCH] Prop Validation Typo should be validator according to https://vuejs.org/v2/guide/components.html#Prop-Validation (confirmed with my local code) --- src/v2/style-guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/style-guide/index.md b/src/v2/style-guide/index.md index a2a026e8d4..fbb91c5791 100644 --- a/src/v2/style-guide/index.md +++ b/src/v2/style-guide/index.md @@ -221,7 +221,7 @@ props: { status: { type: String, required: true, - validate: function (value) { + validator: function (value) { return [ 'syncing', 'synced',