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