uptime-kuma/src/components/Confirm.vue

53 lines
1.4 KiB
Vue
Raw Normal View History

2021-06-25 13:55:49 +00:00
<template>
2021-07-27 17:47:13 +00:00
<div ref="modal" class="modal fade" tabindex="-1">
2021-06-25 13:55:49 +00:00
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
2021-07-27 17:47:13 +00:00
<h5 id="exampleModalLabel" class="modal-title">
Confirm
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" />
2021-06-25 13:55:49 +00:00
</div>
<div class="modal-body">
2021-07-27 17:47:13 +00:00
<slot />
2021-06-25 13:55:49 +00:00
</div>
<div class="modal-footer">
2021-07-27 17:47:13 +00:00
<button type="button" class="btn" :class="btnStyle" data-bs-dismiss="modal" @click="yes">
Yes
</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
No
</button>
2021-06-25 13:55:49 +00:00
</div>
</div>
</div>
</div>
</template>
<script>
2021-07-27 17:47:13 +00:00
import { Modal } from "bootstrap"
2021-06-25 13:55:49 +00:00
export default {
props: {
btnStyle: {
type: String,
2021-07-27 17:47:13 +00:00
default: "btn-primary",
},
2021-06-25 13:55:49 +00:00
},
data: () => ({
2021-07-27 17:47:13 +00:00
modal: null,
2021-06-25 13:55:49 +00:00
}),
mounted() {
this.modal = new Modal(this.$refs.modal)
},
methods: {
show() {
this.modal.show()
},
yes() {
2021-07-27 17:47:13 +00:00
this.$emit("yes");
},
},
2021-06-25 13:55:49 +00:00
}
</script>