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.
37 lines
662 B
37 lines
662 B
<template>
|
|
<div class="flex flex-col gap-4">
|
|
<h5 v-text="event.title" />
|
|
|
|
<p v-text="useAbbreviatedDatetime(event.startDate)" />
|
|
|
|
<p
|
|
v-if="event.endDate"
|
|
v-text="useAbbreviatedDatetime(event.endDate)"
|
|
/>
|
|
|
|
<hr>
|
|
|
|
<div v-html="event.content" />
|
|
|
|
<h6 v-t="'Invitees'" />
|
|
|
|
<ShowLinks
|
|
:item="event"
|
|
:show-status="false"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useAbbreviatedDatetime } from '../../composables/formatDate.js';
|
|
|
|
import ShowLinks from '../resource_links/ShowLinks';
|
|
|
|
// eslint-disable-next-line no-undef
|
|
defineProps({
|
|
event: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
});
|
|
</script>
|
|
|