<template> <DocSectionText v-bind="$attrs"> <p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p> </DocSectionText> <DocSectionCode :code="code" embedded /> </template> <script> export default { data() { return { code: { composition: ` <template> <div class="card flex flex-col items-center"> <TriStateCheckbox v-model="value" /> <label for="checkbox" class="text-gray-700 dark:text-white/80 mt-1">{{ value == null ? 'null' : value }}</label> </div> </template> <script setup> import { ref } from 'vue'; const value = ref(null); <\/script>` } }; } }; </script>