File tree 2 files changed +22
-2
lines changed
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -320,8 +320,8 @@ function doWatch(
320
320
} else {
321
321
// pre
322
322
watcher . update = ( ) => {
323
- if ( instance && instance === currentInstance ) {
324
- // pre-watcher triggered inside setup()
323
+ if ( instance && instance === currentInstance && ! instance . _isMounted ) {
324
+ // pre-watcher triggered before
325
325
const buffer = instance . _preWatchers || ( instance . _preWatchers = [ ] )
326
326
if ( buffer . indexOf ( watcher ) < 0 ) buffer . push ( watcher )
327
327
} else {
Original file line number Diff line number Diff line change @@ -1116,4 +1116,24 @@ describe('api: watch', () => {
1116
1116
await nextTick ( )
1117
1117
expect ( order ) . toMatchObject ( [ `mounted` , `watcher` ] )
1118
1118
} )
1119
+
1120
+ // #12624
1121
+ test ( 'pre watch triggered in mounted hook' , async ( ) => {
1122
+ const spy = vi . fn ( )
1123
+ new Vue ( {
1124
+ setup ( ) {
1125
+ const c = ref ( 0 )
1126
+
1127
+ onMounted ( ( ) => {
1128
+ c . value ++
1129
+ } )
1130
+
1131
+ watchEffect ( ( ) => spy ( c . value ) )
1132
+ return ( ) => { }
1133
+ }
1134
+ } ) . $mount ( )
1135
+ expect ( spy ) . toHaveBeenCalledTimes ( 1 )
1136
+ await nextTick ( )
1137
+ expect ( spy ) . toHaveBeenCalledTimes ( 2 )
1138
+ } )
1119
1139
} )
You can’t perform that action at this time.
0 commit comments