#Reka-UI Checkbox not showing?

1 messages · Page 1 of 1 (latest)

finite vaultBOT
#

Hi @void grail. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

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>

Nuxt UI Checkbox Usage

If you need help with Reka-UI specifically, please consult the Reka-UI documentation or support channels, as the knowledge sources here do not cover that library.

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: