mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(Swipe): avoid repeated initialization
This commit is contained in:
parent
704a9e3231
commit
c9417341e0
@ -3,8 +3,6 @@ import {
|
||||
watch,
|
||||
reactive,
|
||||
computed,
|
||||
onMounted,
|
||||
onActivated,
|
||||
onDeactivated,
|
||||
onBeforeUnmount,
|
||||
} from 'vue';
|
||||
@ -19,6 +17,7 @@ import {
|
||||
useChildren,
|
||||
useWindowSize,
|
||||
usePageVisibility,
|
||||
onMountedOrActivated,
|
||||
} from '@vant/use';
|
||||
import { useTouch } from '../composition/use-touch';
|
||||
import { useExpose } from '../composition/use-expose';
|
||||
@ -398,10 +397,9 @@ export default createComponent({
|
||||
}
|
||||
});
|
||||
|
||||
onMounted(initialize);
|
||||
onActivated(initialize);
|
||||
onDeactivated(stopAutoplay);
|
||||
onBeforeUnmount(stopAutoplay);
|
||||
onMountedOrActivated(initialize);
|
||||
|
||||
return () => (
|
||||
<div ref={root} class={bem()}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user