Added base event checking

This commit is contained in:
Alexis
2024-04-01 19:19:24 +02:00
parent 1404e54d13
commit 7a7c27d780
7 changed files with 145 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts" setup>
import type { CalendarEvent } from '@/stores/events'
const props = defineProps<{
event: CalendarEvent
}>()
</script>
<template>
<button
class="text-xs text-white px-2 py-1 bg-pink-700 block w-full text-left rounded-sm hover:bg-pink-800"
>
{{ event.title }}
</button>
</template>