From d99dee5aae0ca51bac393455eb504da2cffe9de1 Mon Sep 17 00:00:00 2001 From: chenfan0 <83797583+chenfan0@users.noreply.github.com> Date: Sat, 8 Jan 2022 22:52:30 +0800 Subject: [PATCH] Update events.md --- src/guide/events.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/events.md b/src/guide/events.md index 8b7f81b289..b6104cf059 100644 --- a/src/guide/events.md +++ b/src/guide/events.md @@ -171,7 +171,7 @@ To address this problem, Vue provides **event modifiers** for `v-on`. Recall tha ``` ::: tip -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 `@click.prevent.self` will prevent **clicks default action on the element itself and its children** while `@click.self.prevent` will only prevent clicks default action on the element itself. ::: ```html