mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
c97047da46
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
15 lines
274 B
Vue
15 lines
274 B
Vue
<template>
|
|
<UTheme
|
|
:ui="{
|
|
button: {
|
|
base: 'rounded-full'
|
|
}
|
|
}"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<UButton label="Themed" />
|
|
<UButton label="Overridden" :ui="{ base: 'rounded-none' }" />
|
|
</div>
|
|
</UTheme>
|
|
</template>
|