File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
import type { WatchOptions , WatchSource } from 'vue-demi'
2
- import { isRef , watch } from 'vue-demi'
2
+ import { isRef , nextTick , watch } from 'vue-demi'
3
3
import { toValue } from '../toValue'
4
4
import type { ElementOf , MaybeRefOrGetter , ShallowUnwrapRef } from '../utils'
5
5
import { promiseTimeout } from '../utils'
@@ -76,7 +76,10 @@ function createUntil<T>(r: any, isNot = false) {
76
76
r ,
77
77
( v ) => {
78
78
if ( condition ( v ) !== isNot ) {
79
- stop ?.( )
79
+ if ( stop )
80
+ stop ( )
81
+ else
82
+ nextTick ( ( ) => stop ?.( ) )
80
83
resolve ( v )
81
84
}
82
85
} ,
@@ -111,7 +114,10 @@ function createUntil<T>(r: any, isNot = false) {
111
114
[ r , value ] ,
112
115
( [ v1 , v2 ] ) => {
113
116
if ( isNot !== ( v1 === v2 ) ) {
114
- stop ?.( )
117
+ if ( stop )
118
+ stop ( )
119
+ else
120
+ nextTick ( ( ) => stop ?.( ) )
115
121
resolve ( v1 )
116
122
}
117
123
} ,
You can’t perform that action at this time.
0 commit comments