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