https://github.com/oldvis/gallery
Tip revision: 9798cde3778299d40523107bc9e33d20d60f2c98 authored by shellywhen on 24 January 2024, 07:59:25 UTC
Update README.md
Update README.md
Tip revision: 9798cde
VDialog.vue
<script setup lang="ts">
const { dialog } = defineProps<{ dialog: boolean }>()
</script>
<template>
<slot name="activator" />
<Teleport to="#app">
<div
v-if="dialog"
class="fixed w-full h-full flex z-1"
bg="gray opacity-50"
>
<div class="m-auto">
<slot>
<div
class="rounded shadow"
bg="white dark:gray-700"
/>
</slot>
</div>
</div>
</Teleport>
</template>
