Files
ui/playground/compodium/examples/UCheckbox/UCheckboxExampleIndeterminate.vue
2025-03-26 11:40:23 +01:00

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>