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