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