mirror of https://github.com/vuejs/vue.git
7 lines
203 B
JavaScript
7 lines
203 B
JavaScript
|
window.triggerEvent = function triggerEvent (target, event, process) {
|
||
|
var e = document.createEvent('HTMLEvents')
|
||
|
e.initEvent(event, true, true)
|
||
|
if (process) process(e)
|
||
|
target.dispatchEvent(e)
|
||
|
}
|