PronounsPage/components/Tooltip.vue
Andrea Vos 3e23c2d9d3 (lint)
2025-02-01 16:55:29 +01:00

25 lines
428 B
Vue

<script setup lang="ts">
withDefaults(defineProps<{
text: string;
tag?: string;
}>(), {
tag: 'span',
});
</script>
<template>
<Popover
:tag="tag"
:title="text"
:aria-label="text"
placement="top"
>
<slot></slot>
<template #content>
<slot name="tooltip">
{{ text }}
</slot>
</template>
</Popover>
</template>