mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
29 lines
507 B
Vue
29 lines
507 B
Vue
<script lang="ts" setup>
|
|
import type { PropType } from 'vue'
|
|
|
|
defineProps({
|
|
text: {
|
|
type: [String, Number],
|
|
required: true,
|
|
},
|
|
hover: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
position: {
|
|
type: String as PropType<'top' | 'right' | 'bottom' | 'left'>,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ClientOnly>
|
|
<UTooltip
|
|
:popper="{ placement: position }"
|
|
:text="hover"
|
|
>
|
|
<strong class="leading-3 cursor-help">{{ text }}</strong>
|
|
</UTooltip>
|
|
</ClientOnly>
|
|
</template>
|