We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc0b07 commit e274c96Copy full SHA for e274c96
src/core/observer/scheduler.js
@@ -81,7 +81,7 @@ function flushSchedulerQueue () {
81
82
// call component updated and activated hooks
83
callActivatedHooks(activatedQueue)
84
- callUpdateHooks(updatedQueue)
+ callUpdatedHooks(updatedQueue)
85
86
// devtool hook
87
/* istanbul ignore if */
@@ -90,7 +90,7 @@ function flushSchedulerQueue () {
90
}
91
92
93
-function callUpdateHooks (queue) {
+function callUpdatedHooks (queue) {
94
let i = queue.length
95
while (i--) {
96
const watcher = queue[i]
0 commit comments