Files
ui/playground/compodium/examples/UTooltipExample.vue
Romain Hamel f941df1541 chore: up
2025-03-28 08:58:21 +01:00

18 lines
261 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
defaultProps: {
text: 'Tooltip'
}
})
</script>
<template>
<UTooltip v-bind="$attrs">
<UButton
label="Show Tooltip"
color="neutral"
variant="subtle"
/>
</UTooltip>
</template>