File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -209,13 +209,15 @@ export function mountComponent(
209
209
// we set this to vm._watcher inside the watcher's constructor
210
210
// since the watcher's initial patch may call $forceUpdate (e.g. inside child
211
211
// component's mounted hook), which relies on vm._watcher being already defined
212
+ vm . _scope . on ( )
212
213
new Watcher (
213
214
vm ,
214
215
updateComponent ,
215
216
noop ,
216
217
watcherOptions ,
217
218
true /* isRenderWatcher */
218
219
)
220
+ vm . _scope . off ( )
219
221
hydrating = false
220
222
221
223
// flush buffer for flush: "pre" watchers queued in setup()
Original file line number Diff line number Diff line change @@ -72,10 +72,8 @@ export default class Watcher implements DepTarget {
72
72
isRenderWatcher ?: boolean
73
73
) {
74
74
recordEffectScope ( this , activeEffectScope || ( vm ? vm . _scope : undefined ) )
75
- if ( ( this . vm = vm ) ) {
76
- if ( isRenderWatcher ) {
77
- vm . _watcher = this
78
- }
75
+ if ( ( this . vm = vm ) && isRenderWatcher ) {
76
+ vm . _watcher = this
79
77
}
80
78
// options
81
79
if ( options ) {
You can’t perform that action at this time.
0 commit comments