48 lines
923 B
Vue
48 lines
923 B
Vue
<template>
|
|
<SmartModal v-if="show" :title="$t('modal.confirm')" @close="hideModal">
|
|
<template #body>
|
|
<div class="flex flex-col px-2">
|
|
<label>
|
|
{{ title }}
|
|
</label>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<span>
|
|
<ButtonPrimary v-focus :label="yes" @click.native="resolve" />
|
|
<ButtonSecondary :label="no" @click.native="hideModal" />
|
|
</span>
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
show: Boolean,
|
|
title: { type: String, default: null },
|
|
yes: {
|
|
type: String,
|
|
default() {
|
|
return this.$t("yes")
|
|
},
|
|
},
|
|
no: {
|
|
type: String,
|
|
default() {
|
|
return this.$t("no")
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
},
|
|
resolve() {
|
|
this.$emit("resolve")
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
}
|
|
</script>
|