生命周期中的函数 通过此函数调用 生命周期函数 同时检查 组件上有无监听生命周期的事件_hasHookEvent
–初始化事件时,为false 事件解析到 @hook : xxx 为true
即 在组件上绑定相关生命周期函数时 会通过 $emit 去触发,可以达到监听子组件生命周期的作用
export function callHook (vm: Component, hook: string) {
// #7573 disable dep collection when invoking lifecycle hooks
pushTarget()
const handlers = vm.$options[hook]
const info = `${hook} hook`
if (handlers) {
for (let i = 0, j = handlers.length; i < j; i++) {
invokeWithErrorHandling(handlers[i], vm, null, vm, info)
}
}
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook)
}
popTarget()
}
检查 _hasHookEvent
export function eventsMixin (Vue: Class<Component>) {
const hookRE = /^hook:/
Vue.prototype.$on = function (event: string | Array<string>, fn: Function): Component {
...
if (hookRE.test(event)) {
vm._hasHookEvent = true
}
}
return vm
}
也就是说 当在组件上 通过 @hook:xxxx 的方式可以监听到生命周期函数