feat: add eoi queue
This commit is contained in:
parent
52b9502d4f
commit
0da6143b56
|
|
@ -66,6 +66,11 @@ const { logout } = useDirectusAuth();
|
|||
const tags = usePortalTags();
|
||||
|
||||
const interestMenu = [
|
||||
{
|
||||
to: "/dashboard/interest-eoi-queue",
|
||||
icon: "mdi-tray-full",
|
||||
title: "EOI Queue",
|
||||
},
|
||||
{
|
||||
to: "/dashboard/interest-analytics",
|
||||
icon: "mdi-view-dashboard",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
<template>
|
||||
<div class="embed">
|
||||
<iframe
|
||||
src="https://database.portnimara.com/dashboard/#/nc/view/f7f017c3-17db-485d-a30c-2b068b0d39a3"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
useHead({
|
||||
title: "EOI Queue",
|
||||
});
|
||||
</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>
|
||||
Loading…
Reference in New Issue