Files
hoppscotch/components/smart/ConfirmModal.vue
2021-07-06 18:00:39 +00:00

50 lines
983 B
Vue

<template>
<SmartModal v-if="show" @close="hideModal">
<template #header>
<h3 class="heading">{{ $t("confirm") }}</h3>
<div>
<ButtonSecondary icon="close" @click.native="hideModal" />
</div>
</template>
<template #body>
<label>{{ title }}</label>
</template>
<template #footer>
<span></span>
<span>
<ButtonSecondary :label="no" @click.native="hideModal" />
<ButtonPrimary :label="yes" @click.native="resolve" />
</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")
},
},
}
</script>