20 lines
401 B
Vue
20 lines
401 B
Vue
<template>
|
|
<ProjectPageCollaborators />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { ProjectPageProjectFragment } from '~~/lib/common/generated/gql/graphql'
|
|
|
|
const attrs = useAttrs() as {
|
|
project: ProjectPageProjectFragment
|
|
}
|
|
|
|
const projectName = computed(() =>
|
|
attrs.project.name.length ? attrs.project.name : ''
|
|
)
|
|
|
|
useHead({
|
|
title: `Collaborators | ${projectName.value}`
|
|
})
|
|
</script>
|