pleroma-fe/src/components/confirm_modal/confirm_modal.vue
2025-07-17 15:22:03 +03:00

30 lines
580 B
Vue

<template>
<DialogModal
v-body-scroll-lock="true"
class="confirm-modal"
@cancel="onCancel"
>
<template #header>
<span v-text="title" />
</template>
<slot />
<template #footer>
<slot name="footerLeft" />
<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>