Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/slideover.md
1# Slideover23A dialog that slides in from any side of the screen.45> Based on [Reka UI Slideover](https://reka-ui.com/docs/components/dialog)67## Key Props89- `title`: to set the title of the Slideover's header.10- `description`: to set the description of the Slideover's header.11- `close`: to customize or hide the close button (with `false` value) displayed in the Slideover's header.12- `side`: to set the side of the screen where the Slideover will slide in from.13- `transition`: to control whether the Slideover is animated or not.14- `overlay`: to control whether the Slideover has an overlay or not.15- `modal`: to control whether the Slideover blocks interaction with outside content.16- `dismissible`: to control whether the Slideover is dismissible when clicking outside of it or pressing escape.1718## Usage1920```vue21<USlideover22<!-- props here -->23/>24```2526## Slots2728- `#content`29- `#header`30- `#body`31- `#footer`32