diff --git a/src/v2/guide/events.md b/src/v2/guide/events.md index ede0254df2..bd57c0d636 100644 --- a/src/v2/guide/events.md +++ b/src/v2/guide/events.md @@ -104,6 +104,8 @@ var example2 = new Vue({ {% endraw %} +

Note that `event.target` might reference a child element of the element on which the `v-on` was set. Use `event.currentTarget` to get the element of the `v-on`.

+ ## Methods in Inline Handlers Instead of binding directly to a method name, we can also use methods in an inline JavaScript statement: