ptitlutins/app/components/organisms/EventList.vue
2025-10-07 00:20:32 +02:00

19 lines
350 B
Vue

<template>
<div>flootant</div>
<tippy
:content="EventCreationForm"
interactive
placement="right"
trigger="click"
>
<Button :label="$t('event.list.addEventButton')" />
</tippy>
<div>List event</div>
</template>
<script setup lang="ts">
import EventCreationForm from "./EventCreationForm.vue"
</script>
<style></style>