mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(@vant/use): use onMountedOrActivated
This commit is contained in:
parent
6db84d7c2b
commit
91f46d615c
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user