32 lines
497 B
Vue
32 lines
497 B
Vue
<template>
|
|
<div class="embed">
|
|
<iframe
|
|
src="https://flows.portnimara.com/public/dashboards/ugQabIMShSld7pXWYLwpsV1kpbSILPiui5eIOfhd?org_slug=default"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "Data 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>
|