diff --git a/src/v2/guide/events.md b/src/v2/guide/events.md index 2611569c41..b776c3f8a5 100644 --- a/src/v2/guide/events.md +++ b/src/v2/guide/events.md @@ -194,7 +194,7 @@ To address this problem, Vue provides **event modifiers** for `v-on`. Recall tha
Order matters when using modifiers because the relevant code is generated in the same order. Therefore using `@click.prevent.self` will prevent **all clicks** while `@click.self.prevent` will only prevent clicks on the element itself.
+Order matters when using modifiers because the relevant code is generated in the same order. Therefore using `v-on:click.prevent.self` will prevent **all clicks** while `v-on:click.self.prevent` will only prevent clicks on the element itself.
> New in 2.1.4+