rdv: renaming of variable + enable to display selected event

This commit is contained in:
nobohan
2021-08-16 12:45:28 +02:00
parent dc3c8a4032
commit 9907b59379
4 changed files with 13 additions and 8 deletions

View File

@@ -1,17 +1,17 @@
<template>
<concerned-groups></concerned-groups>
<calendar-range></calendar-range>
<calendar-event></calendar-event>
</template>
<script>
import ConcernedGroups from 'ChillActivityAssets/vuejs/Activity/components/ConcernedGroups.vue';
import CalendarRange from '../_components/CalendarRange/CalendarRange.vue';
import CalendarEvent from '../_components/CalendarEvent/CalendarEvent.vue';
export default {
name: "App",
components: {
ConcernedGroups,
CalendarRange
CalendarEvent
}
}
</script>