Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/assets/vue/components/ccalendarevent/Info.vue

27 lines
545 B

<template>
<h5 class="text-xl font-semibold">{{ event.title }}</h5>
<p>{{ event.startDate }}</p>
<p>{{ event.endDate }}</p>
<hr class="my-2">
<div class="text-base mb-3" v-html="event.content" />
<h6 class="text-xl"> {{ $t('Invitees') }}</h6>
<ShowLinks :item="event" :show-status="false" />
</template>
<script>
import ShowLinks from "../resource_links/ShowLinks";
export default {
name: "CCalendarEventInfo",
components: {ShowLinks},
props: {
event: {
type: Object,
required: true
}
}
}
</script>