Skip to content

Panel

Application panel with header, body, and footer slots.

Usage

vue
<script setup>
import { ArchPanel } from "@archora/ui";
</script>

<template>
  <ArchPanel title="Inspector" description="Selected module" scrollable>Details</ArchPanel>
</template>

Live sandbox

Panel can be tested directly on this page.

interactive

Inspector

Selected module details
<Panel />

Props

PropTypeDefaultDescription
titlestring-Title.
padding"none" | "sm" | "md" | "lg""md"Inner padding.
scrollablebooleanfalseMakes the body scrollable.

Slots

SlotPropsDescription
title-Custom title.
description-Custom description.
default-Panel body.
footer-Footer.