mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
71c008e56e
Co-authored-by: Benjamin Canac <canacb1@gmail.com> Co-authored-by: Sandro Circi <sandro.circi@digitoolmedia.com>
17 lines
472 B
Vue
17 lines
472 B
Vue
<template>
|
|
<UTheme
|
|
:props="{
|
|
button: { color: 'neutral', variant: 'subtle', size: 'lg' },
|
|
tooltip: { delayDuration: 0, arrow: true }
|
|
}"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<UTooltip text="Inherits delayDuration from theme">
|
|
<UButton label="Hover me" />
|
|
</UTooltip>
|
|
<UButton label="With icon" icon="i-lucide-rocket" />
|
|
<UButton label="Square" icon="i-lucide-star" square />
|
|
</div>
|
|
</UTheme>
|
|
</template>
|