pages._explore.sections.basic-usage.title

html
<BaseButton text="Click me" />
Code for the above Demo component:
html
<Demo> <BaseButton text="Click me" /> <template #code> <Code language="html" :code="buttonCode" /> </template> </Demo>
typescript
<script setup lang="ts"> const buttonCode = '<BaseButton text="Click me" />' </script>

pages._explore.sections.slots.title

Slot
Type
defaultThe component(s) to be demonstrated
codeCode blocks showing the implementation