diff --git a/src/guide/component-custom-events.md b/src/guide/component-custom-events.md
index 5a7ef9be3c..a3c09f91e0 100644
--- a/src/guide/component-custom-events.md
+++ b/src/guide/component-custom-events.md
@@ -24,7 +24,7 @@ Emitted events can be defined on the component via the `emits` option.
```js
app.component('custom-form', {
- emits: ['inFocus', 'submit']
+ emits: ['in-focus', 'submit']
})
```
@@ -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: `
-
`,