diff --git a/components/vc-notification/Notice.tsx b/components/vc-notification/Notice.tsx index 33fe20649..cf9eee1d5 100644 --- a/components/vc-notification/Notice.tsx +++ b/components/vc-notification/Notice.tsx @@ -46,9 +46,10 @@ export default defineComponent({ ] as any, setup(props, { attrs, slots }) { let closeTimer: any; - const duration = computed(() => (props.duration === undefined ? 1.5 : props.duration)); + let isUnMounted = false; + const duration = computed(() => (props.duration === undefined ? 4.5 : props.duration)); const startCloseTimer = () => { - if (duration.value) { + if (duration.value && !isUnMounted) { closeTimer = setTimeout(() => { close(); }, duration.value * 1000); @@ -79,6 +80,7 @@ export default defineComponent({ startCloseTimer(); }); onUnmounted(() => { + isUnMounted = true; clearCloseTimer(); });