mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
18 lines
261 B
Vue
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>
|