Files
Jack Bobakanoosh c97047da46 feat(Theme): new component (#4387)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2026-02-11 14:02:19 +01:00

19 lines
340 B
Vue

<script setup lang="ts">
import MyButton from './MyButton.vue'
</script>
<template>
<UTheme
:ui="{
button: {
base: 'rounded-full'
}
}"
>
<UCard :ui="{ body: 'flex items-center gap-2 sm:flex-row flex-col' }">
<UButton label="Direct child" />
<MyButton />
</UCard>
</UTheme>
</template>