PronounsPage/components/Tooltip.vue
2024-09-11 21:29:22 +02:00

23 lines
398 B
Vue

<template>
<Popover
:title="text"
:aria-label="text"
placement="top"
>
<slot></slot>
<template #content>
{{ text }}
</template>
</Popover>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
props: {
text: { required: true, type: String },
},
});
</script>