2022-02-09 15:50:25 -05:00
|
|
|
<template>
|
2025-02-05 08:37:00 +02:00
|
|
|
<DialogModal
|
2022-04-09 23:11:19 -04:00
|
|
|
v-body-scroll-lock="true"
|
2022-02-09 16:51:13 -05:00
|
|
|
class="confirm-modal"
|
2025-02-05 08:37:00 +02:00
|
|
|
@cancel="onCancel"
|
2022-02-09 15:50:25 -05:00
|
|
|
>
|
2022-08-01 11:02:21 -04:00
|
|
|
<template #header>
|
2022-02-09 17:03:17 -05:00
|
|
|
<span v-text="title" />
|
2022-02-09 15:50:25 -05:00
|
|
|
</template>
|
|
|
|
|
|
2022-02-09 17:03:17 -05:00
|
|
|
<slot />
|
2022-02-09 15:50:25 -05:00
|
|
|
|
2022-08-01 11:02:21 -04:00
|
|
|
<template #footer>
|
2022-02-09 15:50:25 -05:00
|
|
|
<button
|
|
|
|
|
class="btn button-default"
|
|
|
|
|
@click.prevent="onAccept"
|
2022-02-09 17:03:17 -05:00
|
|
|
v-text="confirmText"
|
|
|
|
|
/>
|
2022-02-09 15:50:25 -05:00
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
class="btn button-default"
|
|
|
|
|
@click.prevent="onCancel"
|
2022-02-09 17:03:17 -05:00
|
|
|
v-text="cancelText"
|
|
|
|
|
/>
|
2022-02-09 15:50:25 -05:00
|
|
|
</template>
|
2025-02-05 08:37:00 +02:00
|
|
|
</DialogModal>
|
2022-02-09 15:50:25 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script src="./confirm_modal.js"></script>
|