port-nimara-client-portal/pages/dashboard/interest-analytics.vue

32 lines
492 B
Vue
Raw Normal View History

2025-03-14 01:10:03 +01:00
<template>
<div class="embed">
<iframe
src="https://flows.portnimara.com/public/dashboards/rLjObZdvDrRCLO8OvI7Bi3Wlmc2S7aFLsnt8B8Rd?org_slug=default"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Analytics",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
position: absolute;
width: 100%;
height: calc(100% + 180px);
border: 0;
top: 0;
left: 0;
}
</style>