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

31 lines
472 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/view/ebf570e4-8329-424d-a43d-a775d2169ffc"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Interest List",
});
</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>