From 29fe24992b6b09da22717777521092f41b32d132 Mon Sep 17 00:00:00 2001 From: Alastair Smith Date: Wed, 30 May 2018 16:30:13 +0100 Subject: [PATCH] Fix link to docs on custom inputs The old link redirected me to https://vuejs.org/v2/guide/components-custom-events.html#Binding-Native-Events-to-Components which was unexpected. I think the correct link is https://vuejs.org/v2/guide/components.html#Using-v-model-on-Components as per this change. --- src/v2/guide/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/guide/forms.md b/src/v2/guide/forms.md index 49c36dd1a3..615746919f 100644 --- a/src/v2/guide/forms.md +++ b/src/v2/guide/forms.md @@ -382,4 +382,4 @@ If you want user input to be trimmed automatically, you can add the `trim` modif > If you're not yet familiar with Vue's components, you can skip this for now. -HTML's built-in input types won't always meet your needs. Fortunately, Vue components allow you to build reusable inputs with completely customized behavior. These inputs even work with `v-model`! To learn more, read about [custom inputs](components.html#Form-Input-Components-using-Custom-Events) in the Components guide. +HTML's built-in input types won't always meet your needs. Fortunately, Vue components allow you to build reusable inputs with completely customized behavior. These inputs even work with `v-model`! To learn more, read about [custom inputs](components.html#Using-v-model-on-Components) in the Components guide.