'Add close button to Calendly pop up in Vue js
I am using Calendly for the appointment booking system. Is there any way that I can add a close button to calendly popup widget?
This is my ModalCalendly.vue
<TransitionRoot as="template" :show="openTimes">
<Dialog
as="div"
class="fixed inset-0 overflow-y-auto"
@close="showTimes"
:open="openTimes"
:initialFocus="closeModalTimesRef"
>
And this is the button I have added
<div ref="closeModalTimesRef">
<button type="button" class="float-right"
@click="$emit('showTimes')"> X
</button>
</div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|