mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 23:11:43 +01:00
14 lines
188 B
Vue
14 lines
188 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
combo: ['size', 'variant'],
|
|
defaultProps: {
|
|
label: 'Badge',
|
|
disabled: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UBadge />
|
|
</template>
|