2
0
mirror of https://github.com/frappe/books.git synced 2025-01-29 18:18:26 +00:00
books/src/components/Modal.vue
Faris Ansari 2c16d868d5 Add Modal
- use this.$modal.show(options) to use in any component
2018-06-13 14:44:51 +05:30

58 lines
1.4 KiB
Vue

<template>
<div>
<div :class="['modal fade', modalClasses]" :style="{display: show ? 'block' : ''}" id="frappe-modal"
tabindex="-1" role="dialog" aria-labelledby="frappe-modal-label" aria-hidden="true"
>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="frappe-modal-label">{{ title }}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" @click="closeModal">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<component :is="body" />
</div>
<div class="modal-footer">
<component :is="footer" />
<button type="button" class="btn btn-secondary" @click="closeModal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal-backdrop show" v-show="show"></div>
</div>
</template>
<script>
export default {
props: {
show: Boolean,
title: {
type: String,
default: 'Modal Title'
},
body: {
type: Object,
default: null
},
footer: {
type: Object,
default: null
}
},
computed: {
modalClasses() {
return {
show: this.show
}
}
},
methods: {
closeModal() {
this.$emit('closeModal');
}
}
}
</script>