What is Pico CSS?
Pico gives semantic HTML a clean default look. Pear keeps that HTML shape and makes the Vue bits a little easier.
Can the summary use a slot?
Yes. The simple case uses the summary prop, but richer headings can use the named summary slot.
Custom summary slot
The summary slot is useful when the heading needs markup.
<p-accordion summary="What is Pico CSS?" v-model:open="isPicoOpen">
<p>Pico styles semantic HTML with very few classes.</p>
</p-accordion>
<p-accordion>
<template #summary>
<strong>Custom summary slot</strong>
</template>
<p>This summary is rendered from slot content.</p>
</p-accordion>