mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
12 lines
228 B
Vue
12 lines
228 B
Vue
<script setup lang="ts">
|
|
import { DialogClose, type DialogCloseProps } from 'reka-ui'
|
|
|
|
const props = defineProps<DialogCloseProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<DialogClose v-bind="props">
|
|
<slot />
|
|
</DialogClose>
|
|
</template>
|