i have implemented a component in vue which shows a modal.
i did this with vue-tailwind. Having said that I would like the modal to show only once and not every time I update the browser page.
I was wondering if this frontend thing was possible?
This is modal:
<template>
<t-modal
header="Modal title to be shown only once"
>
Modal content to be shown only once
<template v-slot:footer>
<div class="flex justify-between">
<t-button type="button">
Cancel
</t-button>
<t-button type="button">
Ok
</t-button>
</div>
</template>
</t-modal>
</template>
@MohamedTammam once: to be shown only once, so I go into the homepage and see the modal only once. If I re-upload the page once I enter the homepage, the modal must no longer be visible.