Skip to content

Commit de42278

Browse files
committed
fix: ensure init/prepatch hooks are still repsected
this address a regression introduced in 984927a which causes vue-router#1338 to resurface.
1 parent a7d190d commit de42278

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/core/vdom/create-component.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,21 @@ function installComponentHooks (data: VNodeData) {
238238
const hooks = data.hook || (data.hook = {})
239239
for (let i = 0; i < hooksToMerge.length; i++) {
240240
const key = hooksToMerge[i]
241-
hooks[key] = componentVNodeHooks[key]
241+
const existing = hooks[key]
242+
const toMerge = componentVNodeHooks[key]
243+
if (existing !== toMerge && !(existing && existing._merged)) {
244+
hooks[key] = existing ? mergeHook(toMerge, existing) : toMerge
245+
}
246+
}
247+
}
248+
249+
function mergeHook (f1, f2) {
250+
const merged = (a, b, c, d) => {
251+
f1(a, b, c, d)
252+
f2(a, b, c, d)
242253
}
254+
merged._merged = true
255+
return merged
243256
}
244257

245258
// transform component v-model info (value and callback) into

test/unit/modules/vdom/patch/edge-cases.spec.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,15 @@ describe('vdom patch: edge cases', () => {
393393
extends: Base
394394
}
395395

396+
// sometimes we do need to tap into these internal hooks (e.g. in vue-router)
397+
// so make sure it does work
398+
const inlineHookSpy = jasmine.createSpy('inlineInit')
399+
396400
const vm = new Vue({
397401
render (h) {
398-
const data = { staticClass: 'text-red' }
402+
const data = { staticClass: 'text-red', hook: {
403+
init: inlineHookSpy
404+
}}
399405

400406
return h('div', [
401407
h(Foo, data),
@@ -405,5 +411,6 @@ describe('vdom patch: edge cases', () => {
405411
}).$mount()
406412

407413
expect(vm.$el.textContent).toBe('FooBar')
414+
expect(inlineHookSpy.calls.count()).toBe(2)
408415
})
409416
})

0 commit comments

Comments
 (0)