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

31 lines
476 B
Vue
Raw Normal View History

2025-03-14 01:10:03 +01:00
<template>
<div class="embed">
<iframe
src="https://database.portnimara.com/dashboard/#/nc/kanban/2fe9125c-9051-4b49-93ff-745159528425"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Interest Status",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
width: 100%;
height: calc(100% + 46px);
border: 0;
position: absolute;
top: -46px;
}
</style>