perf: using appear instead

This commit is contained in:
chenjiahan 2021-09-28 21:13:02 +08:00 committed by neverland
parent a48caa7c98
commit c3759b1c3f
2 changed files with 9 additions and 8 deletions

View File

@ -54,6 +54,10 @@ export default defineComponent({
);
});
return () => <Transition name="van-fade">{renderOverlay()}</Transition>;
return () => (
<Transition name="van-fade" appear>
{renderOverlay()}
</Transition>
);
},
});

View File

@ -1,4 +1,4 @@
import { createApp, reactive, Component, nextTick } from 'vue';
import { createApp, reactive, Component } from 'vue';
import { extend } from '../utils';
import { useExpose } from '../composables/use-expose';
@ -15,14 +15,11 @@ export function usePopupState() {
};
const open = (props: Record<string, any>) => {
extend(state, props);
// for transition
nextTick(() => toggle(true));
extend(state, props, { transitionAppear: true });
toggle(true);
};
const close = () => {
nextTick(() => toggle(false));
};
const close = () => toggle(false);
useExpose({ open, close, toggle });