@@ -35,7 +35,11 @@ onMounted(async () => {
});
const openInNewTab = (url: string) => {
- window.open(url, "_blank");
+ if (url === "email") {
+ window.open("email://open");
+ } else {
+ window.open(url, "_blank");
+ }
};
</script>