diff --git a/docs/vue2.html b/docs/vue2.html index fb2b2455..9980f408 100644 --- a/docs/vue2.html +++ b/docs/vue2.html @@ -967,6 +967,173 @@
:- | :- |
---|---|
component | # |
transition | # |
transition-group | # |
keep-alive | # |
slot | # |
:- | :- |
---|---|
v-on:click.stop # | 调用 event.stopPropagation()。 |
v-on:click.prevent # | 调用 event.preventDefault()。 |
v-on:click.capture # | 添加事件侦听器时使用 capture 模式。 |
v-on:click.self # | 只当事件是从侦听器绑定的元素本身触发时才触发回调。 |
v-on:click.{keyCode|keyAlias} # | 只当事件是从特定键触发时才触发回调。 |
v-on:click.native # | 监听组件根元素的原生事件。 |
v-on:click.once # | 只触发一次回调。 |
v-on:click.passive (2.3.0) # | 以 { passive: true } 模式添加侦听器 |