chore(@vant/use): use onMountedOrActivated

This commit is contained in:
chenjiahan 2020-11-11 20:44:32 +08:00
parent 6db84d7c2b
commit 91f46d615c

View File

@ -1,11 +1,5 @@
import {
Ref,
unref,
onMounted,
onActivated,
onUnmounted,
onDeactivated,
} from 'vue';
import { Ref, unref, onUnmounted, onDeactivated } from 'vue';
import { onMountedOrActivated } from '../onMountedOrActivated';
import { inBrowser } from '../utils';
let supportsPassive = false;
@ -63,8 +57,7 @@ export function useEventListener(
}
};
onMounted(add);
onActivated(add);
onUnmounted(remove);
onDeactivated(remove);
onMountedOrActivated(add);
}