-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathon.js
37 lines (32 loc) · 892 Bytes
/
on.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var utils = require('../utils')
/**
* Binding for event listeners
*/
module.exports = {
isFn: true,
bind: function () {
this.context = this.binding.isExp
? this.vm
: this.binding.compiler.vm
},
update: function (handler) {
if (typeof handler !== 'function') {
utils.warn('Directive "v-on:' + this.expression + '" expects a method.')
return
}
this.unbind()
var vm = this.vm,
context = this.context
this.handler = function (e) {
e.targetVM = vm
context.$event = e
var res = handler.call(context, e)
context.$event = null
return res
}
this.el.addEventListener(this.arg, this.handler)
},
unbind: function () {
this.el.removeEventListener(this.arg, this.handler)
}
}