You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
940 B
37 lines
940 B
<template>
|
|
<div class="q-pa-md q-gutter-sm">
|
|
<q-dialog :model-value="show" persistent>
|
|
<q-card>
|
|
<q-card-section class="row items-center">
|
|
<q-avatar icon="warning" color="primary" text-color="white" />
|
|
<span class="q-ml-sm">{{ $t('Are you sure you want to delete this item?') }}</span>
|
|
</q-card-section>
|
|
|
|
<q-card-actions align="right">
|
|
<q-btn flat label="Cancel" color="primary" v-close-popup @click="handleCancel" />
|
|
<q-btn flat label="Delete" color="primary" v-close-popup @click="handleDelete" />
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ConfirmDelete',
|
|
props: {
|
|
show: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
handleDelete: {
|
|
type: Function,
|
|
required: true,
|
|
},
|
|
handleCancel: {
|
|
type: Function,
|
|
required: false,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|