diff --git a/src/guide/migration/emits-option.md b/src/guide/migration/emits-option.md index 968a0f41f7..35b40aea09 100644 --- a/src/guide/migration/emits-option.md +++ b/src/guide/migration/emits-option.md @@ -8,13 +8,13 @@ badges: ## Overview -Vue 3 now offers an `emits` option similar to the existing `props` option. This option can be used to define the events that a component can emit to its parent. +Vue 3 now offers an `emits` option, similar to the existing `props` option. This option can be used to define the events that a component can emit to its parent. ## 2.x Behavior -In Vue 2, you can define the props that a component received, but you can't declare which events it can emit: +In Vue 2, you can define the props that a component receives, but you can't declare which events it can emit: -```html +```vue