pleroma-fe/src/components/confirm_modal/confirm_modal.vue
2025-02-05 08:37:00 +02:00

29 lines
547 B
Vue

<template>
<DialogModal
v-body-scroll-lock="true"
class="confirm-modal"
@cancel="onCancel"
>
<template #header>
<span v-text="title" />
</template>
<slot />
<template #footer>
<button
class="btn button-default"
@click.prevent="onAccept"
v-text="confirmText"
/>
<button
class="btn button-default"
@click.prevent="onCancel"
v-text="cancelText"
/>
</template>
</DialogModal>
</template>
<script src="./confirm_modal.js"></script>