pleroma-fe/src/components/confirm_modal/confirm_modal.vue

28 lines
552 B
Vue
Raw Normal View History

2022-02-09 15:50:25 -05:00
<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>