mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -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
250 B
Vue
12 lines
250 B
Vue
<script setup lang="ts">
|
|
import { TooltipProvider, type TooltipProviderProps } from 'radix-vue'
|
|
|
|
const props = defineProps<TooltipProviderProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<TooltipProvider v-bind="props">
|
|
<slot />
|
|
</TooltipProvider>
|
|
</template>
|