0
0
Fork 0

Add teleport to Modals.

This commit is contained in:
Oliver-Akins 2020-12-13 17:17:32 -07:00
parent f823e599b4
commit 42d0fe483e

View file

@ -1,18 +1,20 @@
<template>
<transition name="fade" @after-enter="content = true">
<div
v-if="show"
class="modal-container"
:class="closable ? 'clickable' : ''"
@click.self.stop="handleBackgroundClick"
>
<transition name="burst" @after-leave="$emit('closed')">
<div v-if="content" class="modal unclickable">
<slot />
</div>
</transition>
</div>
</transition>
<teleport to="body">
<transition name="fade" @after-enter="content = true">
<div
v-if="show"
class="modal-container"
:class="closable ? 'clickable' : ''"
@click.self.stop="handleBackgroundClick"
>
<transition name="burst" @after-leave="$emit('closed')">
<div v-if="content" class="modal unclickable">
<slot />
</div>
</transition>
</div>
</transition>
</teleport>
</template>
<script>