diff --git a/src/v2/guide/events.md b/src/v2/guide/events.md index ede0254df2..091dc3a5ec 100644 --- a/src/v2/guide/events.md +++ b/src/v2/guide/events.md @@ -178,6 +178,12 @@ To address this problem, Vue provides **event modifiers** for `v-on`. Recall tha - `.passive` ``` html +Please note that with the exception of `.once` the modifiers above only work with **native events**. + +

+When emitting native-looking events from components, such as 'click', it is a good practice to also emit the native event. eg. `event.data = {...}; this.$emit('click', event)`. If you haven't read about components yet, don't worry about this for now. +

+