pleroma-fe/src/components/confirm_modal/confirm_modal.vue
2023-01-20 23:39:08 -05:00

29 lines
552 B
Vue

<template>
<dialog-modal
v-if="showing"
:onCancel="onCancel"
>
<template v-slot:header>
<span v-text="title"></span>
</template>
<slot></slot>
<template v-slot:footer>
<button
class="btn button-default"
v-text="confirmText"
@click.prevent="onAccept"
></button>
<button
class="btn button-default"
v-text="cancelText"
@click.prevent="onCancel"
></button>
</template>
</dialog-modal>
</template>
<script src="./confirm_modal.js"></script>