fix(Sticky): error when unmounted #7169

This commit is contained in:
chenjiahan 2020-09-12 21:36:45 +08:00
parent 195f3ffea1
commit 10cfb36636

View File

@ -1,5 +1,11 @@
import { inBrowser } from '../utils';
import { Ref, onMounted, onUnmounted, onActivated, onDeactivated } from 'vue';
import {
Ref,
onMounted,
onActivated,
onDeactivated,
onBeforeUnmount,
} from 'vue';
export function useVisibilityChange(
target: Ref<Element>,
@ -30,6 +36,6 @@ export function useVisibilityChange(
onMounted(observe);
onActivated(observe);
onUnmounted(unobserve);
onDeactivated(unobserve);
onBeforeUnmount(unobserve);
}