mirror of
https://github.com/unraid/api.git
synced 2026-02-20 15:08:29 -06:00
- Add 'event' and 'date' properties to the NotificationItemProps interface - Add 'view' property to the NotificationItemProps interface - Remove trailing newline at the end of the file
12 lines
245 B
Vue
12 lines
245 B
Vue
<script setup lang="ts">
|
|
import { TooltipTrigger, type TooltipTriggerProps } from 'radix-vue'
|
|
|
|
const props = defineProps<TooltipTriggerProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<TooltipTrigger v-bind="props">
|
|
<slot />
|
|
</TooltipTrigger>
|
|
</template>
|