mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
14 lines
202 B
Vue
14 lines
202 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
combo: ['size', 'variant'],
|
|
defaultProps: {
|
|
label: 'Click me!',
|
|
icon: 'i-lucide-rocket'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UButton />
|
|
</template>
|