#Reka-UI Checkbox not showing?
1 messages · Page 1 of 1 (latest)
I'm sorry, but the knowledge sources provided do not contain information about the internal implementation or troubleshooting of the Reka-UI Checkbox component, nor do they mention the usage of <CheckboxRoot> or <CheckboxIndicator>. The sources focus on the Nuxt UI Checkbox component (<UCheckbox>) and its configuration, theming, and usage within Nuxt projects, not Reka-UI or its primitives.
If you are using Nuxt UI, you should use the <UCheckbox> component as documented, which handles all the necessary logic and rendering for you:
<script setup lang="ts">
const value = ref(true)
</script>
<template>
<UCheckbox v-model="value" label="Check me" />
</template>