fix(@vant/use): invalid watch source (#9095)

This commit is contained in:
neverland 2021-07-22 19:53:16 +08:00 committed by GitHub
parent 103929ae3d
commit f550c634e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
import { Ref, unref, onUnmounted, onDeactivated, watch } from 'vue';
import { Ref, watch, isRef, unref, onUnmounted, onDeactivated } from 'vue';
import { onMountedOrActivated } from '../onMountedOrActivated';
import { inBrowser } from '../utils';
@ -65,8 +65,10 @@ export function useEventListener(
onDeactivated(() => remove(target));
onMountedOrActivated(() => add(target));
watch(target, (val, oldVal) => {
remove(oldVal);
add(val);
});
if (isRef(target)) {
watch(target, (val, oldVal) => {
remove(oldVal);
add(val);
});
}
}