Files
speckle-server/packages/frontend-2/components/project/page/dashboards/Dashboards.vue
T
2025-10-08 20:26:59 +02:00

16 lines
332 B
Vue

<template>
<div>
<DashboardsList :project-id="projectId" />
</div>
</template>
<script setup lang="ts">
import type { ProjectPageProjectFragment } from '~~/lib/common/generated/gql/graphql'
const attrs = useAttrs() as {
project: ProjectPageProjectFragment
}
const projectId = computed(() => attrs.project.id)
</script>