19 lines
350 B
Vue
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>
|