You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
554 B
32 lines
554 B
<script setup>
|
|
import ShowLinks from "../resource_links/ShowLinks.vue"
|
|
|
|
defineProps({
|
|
event: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="invitations-info">
|
|
<h6
|
|
v-t="'Invitations'"
|
|
class="invitations-info__title"
|
|
/>
|
|
|
|
<div
|
|
v-if="event.resourceLinkListFromEntity.length"
|
|
class="invitations-info__item"
|
|
>
|
|
<p v-t="'Invitees'" />
|
|
<div>
|
|
<ShowLinks
|
|
:item="event"
|
|
:show-status="false"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|