File tree 5 files changed +24
-2
lines changed
platforms/web/runtime/modules
5 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export type Config = {
19
19
warnHandler: ?( msg : string , vm : Component , trace : string ) => void ;
20
20
ignoredElements: Array < string | RegExp > ;
21
21
keyCodes: { [ key : string ] : number | Array < number > } ;
22
+ useEventDelegation: boolean ;
22
23
23
24
// platform
24
25
isReservedTag: ( x ? : string ) => boolean ;
@@ -83,6 +84,15 @@ export default ({
83
84
// $flow-disable-line
84
85
keyCodes : Object . create ( null ) ,
85
86
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
+
86
96
/**
87
97
* Check if a tag is reserved so that it cannot be registered as a
88
98
* component. This is platform-dependent and may be overwritten.
Original file line number Diff line number Diff line change 1
1
/* @flow */
2
2
3
+ import config from 'core/config'
3
4
import { isDef , isUndef } from 'shared/util'
4
5
import { updateListeners } from 'core/vdom/helpers/index'
5
6
import { isIE , isPhantomJS , supportsPassive } from 'core/util/index'
@@ -50,7 +51,12 @@ function add (
50
51
capture : boolean ,
51
52
passive : boolean
52
53
) {
53
- if ( ! capture && ! passive && delegateRE . test ( name ) ) {
54
+ if (
55
+ ! capture &&
56
+ ! passive &&
57
+ config . useEventDelegation &&
58
+ delegateRE . test ( name )
59
+ ) {
54
60
const count = eventCounts [ name ]
55
61
let store = target . __events
56
62
if ( ! count ) {
@@ -150,7 +156,7 @@ function remove (
150
156
_target ?: HTMLElement
151
157
) {
152
158
const el : any = _target || target
153
- if ( ! capture && delegateRE . test ( name ) ) {
159
+ if ( ! capture && config . useEventDelegation && delegateRE . test ( name ) ) {
154
160
el . __events [ name ] = null
155
161
if ( -- eventCounts [ name ] === 0 ) {
156
162
removeGlobalHandler ( name )
Original file line number Diff line number Diff line change 6
6
< script src ="../../../dist/vue.min.js "> </ script >
7
7
</ head >
8
8
< body >
9
+ < script >
10
+ // this is necessary to make these cases pass
11
+ Vue . config . useEventDelegation = true
12
+ </ script >
9
13
10
14
<!-- #4510 click and change event on checkbox -->
11
15
< div id ="case-1 ">
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ class Test extends Vue {
75
75
config . keyCodes = { esc : 27 } ;
76
76
config . ignoredElements = [ 'foo' , / ^ i o n - / ] ;
77
77
config . async = false
78
+ config . useEventDelegation = true
78
79
}
79
80
80
81
static testMethods ( ) {
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ export interface VueConfiguration {
74
74
warnHandler ( msg : string , vm : Vue , trace : string ) : void ;
75
75
ignoredElements : ( string | RegExp ) [ ] ;
76
76
keyCodes : { [ key : string ] : number | number [ ] } ;
77
+ useEventDelegation : boolean ;
77
78
async : boolean ;
78
79
}
79
80
You can’t perform that action at this time.
0 commit comments