gm-2api / frontend /src /components /ui /HelpTip.vue
yu
Add Dockerfile and code
4bcd925
raw
history blame contribute delete
204 Bytes
<template>
<Tooltip :text="text">
<span class="help-dot">?</span>
</Tooltip>
</template>
<script setup lang="ts">
import Tooltip from './Tooltip.vue'
defineProps<{
text: string
}>()
</script>