diff --git a/src/runtime/components/overlays/Notification.vue b/src/runtime/components/overlays/Notification.vue index afe0af5c89..e169af2ccb 100644 --- a/src/runtime/components/overlays/Notification.vue +++ b/src/runtime/components/overlays/Notification.vue @@ -192,7 +192,9 @@ onMounted(() => { }) onUnmounted(() => { - timer.stop() + if (timer) { + timer.stop() + } })