2022-09-01 22:32:03 +00:00
|
|
|
<template>
|
2022-09-09 22:46:53 +00:00
|
|
|
<BaseModal v-model="isRevealed" readonly @cancel="cancel(false)">
|
2022-09-01 22:32:03 +00:00
|
|
|
<template #title> Confirm </template>
|
|
|
|
<div>
|
|
|
|
<p>{{ text }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-action">
|
|
|
|
<BaseButton type="submit" @click="confirm(true)"> Confirm </BaseButton>
|
|
|
|
</div>
|
|
|
|
</BaseModal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
const { text, isRevealed, confirm, cancel } = useConfirm();
|
|
|
|
</script>
|