2019-10-18 11:04:24 +00:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-body-scroll-lock="true"
|
|
|
|
class="modal-view"
|
2019-10-18 11:08:34 +00:00
|
|
|
@click.self="closeModal"
|
2019-10-18 11:04:24 +00:00
|
|
|
>
|
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
closeModal () {
|
|
|
|
this.$emit('close')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.modal-view {
|
2019-10-18 11:07:16 +00:00
|
|
|
z-index: 1000;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
overflow: auto;
|
|
|
|
animation-duration: 0.2s;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
animation-name: modal-background-fadein;
|
|
|
|
|
2019-10-18 11:04:24 +00:00
|
|
|
body:not(.scroll-locked) & {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|