lijunke
deploy: clean start with hf metadata
18081cf
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>