funkwhale/front/src/components/common/Tooltip.vue

16 wiersze
221 B
Vue

<script setup lang="ts">
interface Props {
content: string
}
defineProps<Props>()
</script>
<template>
<span
class="tooltip"
:data-tooltip="content"
><i class="question circle icon" /></span>
</template>