port-nimara-client-portal/pages/dashboard/interest-berth-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/gallery/3553e50d-5882-46ea-99e2-4542a1d92ef4"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Berth 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>