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: ` - `,