marketingPortal/pages/dashboard/interest-emails.vue

30 lines
389 B
Vue

<template>
<div class="embed">
<iframe
src="https://cloud.portnimara.com/apps/mail/"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Emails",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
width: 100%;
height: 100%;
border: 0;
position: absolute;
}
</style>