mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 03:57:03 -04:00
25 lines
428 B
Vue
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>
|