mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
15 lines
283 B
Vue
15 lines
283 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
combo: ['size', 'orientation']
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UButtonGroup v-bind="$attrs">
|
|
<UButton color="neutral" variant="outline">
|
|
Button
|
|
</UButton>
|
|
<UInput placeholder="Search..." />
|
|
</UButtonGroup>
|
|
</template>
|