File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -274,10 +274,7 @@ function doWatch(
274
274
let oldValue = isMultiSource ? [ ] : INITIAL_WATCHER_VALUE
275
275
// overwrite default run
276
276
watcher . run = ( ) => {
277
- if (
278
- ! watcher . active &&
279
- ! ( flush === 'pre' && instance && instance . _isBeingDestroyed )
280
- ) {
277
+ if ( ! watcher . active ) {
281
278
return
282
279
}
283
280
if ( cb ) {
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ describe('api: watch', () => {
542
542
expect ( cb ) . not . toHaveBeenCalled ( )
543
543
} )
544
544
545
- it ( 'should fire on component unmount w/ flush: pre' , async ( ) => {
545
+ it ( 'should not fire on component unmount w/ flush: pre' , async ( ) => {
546
546
const toggle = ref ( true )
547
547
const cb = vi . fn ( )
548
548
const Comp = {
@@ -560,7 +560,7 @@ describe('api: watch', () => {
560
560
expect ( cb ) . not . toHaveBeenCalled ( )
561
561
toggle . value = false
562
562
await nextTick ( )
563
- expect ( cb ) . toHaveBeenCalledTimes ( 1 )
563
+ expect ( cb ) . not . toHaveBeenCalled ( )
564
564
} )
565
565
566
566
// vuejs/core#1763
You can’t perform that action at this time.
0 commit comments