add reusable modal component

ci-fixes
taehoon 5 years ago
parent 093d785fbf
commit 07ec18fe11

@ -0,0 +1,29 @@
<template>
<div
v-body-scroll-lock="true"
@click.self="closeModal"
class="modal-view"
>
<slot />
</div>
</template>
<script>
export default {
methods: {
closeModal () {
this.$emit('close')
}
}
}
</script>
<style lang="scss">
.modal-view {
body:not(.scroll-locked) & {
display: none;
}
}
</style>
Loading…
Cancel
Save