mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 19:19:29 +08:00
28 lines
534 B
Vue
28 lines
534 B
Vue
<template>
|
|
<dialog-modal
|
|
class="confirm-modal"
|
|
:on-cancel="onCancel"
|
|
>
|
|
<template v-slot:header>
|
|
<span v-text="title" />
|
|
</template>
|
|
|
|
<slot />
|
|
|
|
<template v-slot:footer>
|
|
<button
|
|
class="btn button-default"
|
|
@click.prevent="onAccept"
|
|
v-text="confirmText"
|
|
/>
|
|
|
|
<button
|
|
class="btn button-default"
|
|
@click.prevent="onCancel"
|
|
v-text="cancelText"
|
|
/>
|
|
</template>
|
|
</dialog-modal>
|
|
</template>
|
|
|
|
<script src="./confirm_modal.js"></script>
|