25 lines
404 B
Vue
25 lines
404 B
Vue
<template>
|
|
<Teleport to="body">
|
|
<div
|
|
v-if="opened"
|
|
class="absolute z-10 top-0 bottom-0 left-0 right-0"
|
|
>
|
|
<slot />
|
|
<div
|
|
class="bg-black/70 w-screen h-screen"
|
|
@click="$emit('close')"
|
|
/>
|
|
</div>
|
|
</Teleport>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineEmits(['close']);
|
|
|
|
defineProps({
|
|
opened: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
});
|
|
</script> |