pages._explore-components-presentational-demo.title
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 |
|---|---|
| default | The component(s) to be demonstrated |
| code | Code blocks showing the implementation |