Calendar: hide toast on unmount

This commit is contained in:
Jörn-Michael Miehe 2023-11-11 01:47:54 +00:00
parent 8c93a974e6
commit 785c74fd7b

View file

@ -111,5 +111,9 @@ export default class extends Vue {
this.multi_modal!.hide(); this.multi_modal!.hide();
}); });
} }
public beforeUnmount(): void {
this.toast?.hide();
}
} }
</script> </script>