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 {
|
import { Ref, unref, onUnmounted, onDeactivated } from 'vue';
|
||||||
Ref,
|
import { onMountedOrActivated } from '../onMountedOrActivated';
|
||||||
unref,
|
|
||||||
onMounted,
|
|
||||||
onActivated,
|
|
||||||
onUnmounted,
|
|
||||||
onDeactivated,
|
|
||||||
} from 'vue';
|
|
||||||
import { inBrowser } from '../utils';
|
import { inBrowser } from '../utils';
|
||||||
|
|
||||||
let supportsPassive = false;
|
let supportsPassive = false;
|
||||||
@ -63,8 +57,7 @@ export function useEventListener(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(add);
|
|
||||||
onActivated(add);
|
|
||||||
onUnmounted(remove);
|
onUnmounted(remove);
|
||||||
onDeactivated(remove);
|
onDeactivated(remove);
|
||||||
|
onMountedOrActivated(add);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user