From 6fc94d7008464c0540a4ca2379ec8f3bf10e0ff0 Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Fri, 8 Jan 2021 21:55:49 -0500 Subject: [PATCH] fix: grammar and casing on video title --- src/guide/component-custom-events.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/guide/component-custom-events.md b/src/guide/component-custom-events.md index 5a7ef9be3c..322aecafa1 100644 --- a/src/guide/component-custom-events.md +++ b/src/guide/component-custom-events.md @@ -18,7 +18,7 @@ As with [props casing](/guide/component-props.html#prop-casing-camelcase-vs-keba ## Defining Custom Events -Watch a free video about Defining Custom Events on Vue School +Watch a free video on how to define custom events on Vue School Emitted events can be defined on the component via the `emits` option. @@ -81,7 +81,7 @@ app.component('my-component', { }, emits: ['update:title'], template: ` - @@ -114,7 +114,7 @@ app.component('user-name', { }, emits: ['update:firstName', 'update:lastName'], template: ` - @@ -153,7 +153,7 @@ app.component('my-component', { }, emits: ['update:modelValue'], template: ` - `, @@ -218,7 +218,7 @@ app.component('my-component', { props: ['description', 'descriptionModifiers'], emits: ['update:description'], template: ` - `,