Skip to content

Commit 3be1c5d

Browse files
committed
feat(config): expose config.useEventDelegation and default to false
1 parent 02f897a commit 3be1c5d

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

src/core/config.js

+10
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export type Config = {
1919
warnHandler: ?(msg: string, vm: Component, trace: string) => void;
2020
ignoredElements: Array<string | RegExp>;
2121
keyCodes: { [key: string]: number | Array<number> };
22+
useEventDelegation: boolean;
2223

2324
// platform
2425
isReservedTag: (x?: string) => boolean;
@@ -83,6 +84,15 @@ export default ({
8384
// $flow-disable-line
8485
keyCodes: Object.create(null),
8586

87+
/**
88+
* Use event delegation - this works around a few async edge cases caused by
89+
* microtask / DOM event racing conditions, and should in theory save some
90+
* memory.
91+
*
92+
* Off by default for backwards compatibility.
93+
*/
94+
useEventDelegation: false,
95+
8696
/**
8797
* Check if a tag is reserved so that it cannot be registered as a
8898
* component. This is platform-dependent and may be overwritten.

src/platforms/web/runtime/modules/events.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/* @flow */
22

3+
import config from 'core/config'
34
import { isDef, isUndef } from 'shared/util'
45
import { updateListeners } from 'core/vdom/helpers/index'
56
import { isIE, isPhantomJS, supportsPassive } from 'core/util/index'
@@ -50,7 +51,12 @@ function add (
5051
capture: boolean,
5152
passive: boolean
5253
) {
53-
if (!capture && !passive && delegateRE.test(name)) {
54+
if (
55+
!capture &&
56+
!passive &&
57+
config.useEventDelegation &&
58+
delegateRE.test(name)
59+
) {
5460
const count = eventCounts[name]
5561
let store = target.__events
5662
if (!count) {
@@ -150,7 +156,7 @@ function remove (
150156
_target?: HTMLElement
151157
) {
152158
const el: any = _target || target
153-
if (!capture && delegateRE.test(name)) {
159+
if (!capture && config.useEventDelegation && delegateRE.test(name)) {
154160
el.__events[name] = null
155161
if (--eventCounts[name] === 0) {
156162
removeGlobalHandler(name)

test/e2e/specs/async-edge-cases.html

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<script src="../../../dist/vue.min.js"></script>
77
</head>
88
<body>
9+
<script>
10+
// this is necessary to make these cases pass
11+
Vue.config.useEventDelegation = true
12+
</script>
913

1014
<!-- #4510 click and change event on checkbox -->
1115
<div id="case-1">

types/test/vue-test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class Test extends Vue {
7575
config.keyCodes = { esc: 27 };
7676
config.ignoredElements = ['foo', /^ion-/];
7777
config.async = false
78+
config.useEventDelegation = true
7879
}
7980

8081
static testMethods() {

types/vue.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export interface VueConfiguration {
7474
warnHandler(msg: string, vm: Vue, trace: string): void;
7575
ignoredElements: (string | RegExp)[];
7676
keyCodes: { [key: string]: number | number[] };
77+
useEventDelegation: boolean;
7778
async: boolean;
7879
}
7980

0 commit comments

Comments
 (0)