Skip to content

Commit 955d3d5

Browse files
committedMay 31, 2017
fix(lifecycle): continue to handle data
1 parent d9b487e commit 955d3d5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎src/core/init/lifecycle.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,22 @@ export function initLifecycle (vm) {
1919
}
2020

2121
export function callHook (vm, hook, data, next = noop) {
22-
let newData = data
2322
const queue = vm._hooks[hook]
2423

2524
const step = function (index) {
2625
const hook = queue[index]
2726
if (index >= queue.length) {
28-
next(newData)
27+
next(data)
2928
} else {
3029
if (typeof hook === 'function') {
3130
if (hook.length === 2) {
3231
hook(data, result => {
33-
newData = result
32+
data = result
3433
step(index + 1)
3534
})
3635
} else {
3736
const result = hook(data)
38-
newData = result !== undefined ? result : newData
37+
data = result !== undefined ? result : data
3938
step(index + 1)
4039
}
4140
} else {

‎src/plugins/front-matter/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ const install = function (hook, vm) {
1010
})
1111
}
1212

13-
window.$docsify.plugins = [].concat(install, window.$docsify.plugins)
13+
$docsify.plugins = [].concat(install, $docsify.plugins)

0 commit comments

Comments
 (0)