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/slider.md
1# Slider23An input to select a numeric value within a range.45> Based on [Reka UI Slider](https://reka-ui.com/docs/components/slider)67## Key Props89- `step`: to set the increment value of the Slider.10- `orientation`: to change the orientation of the Slider.11- `color`: to change the color of the Slider.12- `size`: to change the size of the Slider.13- `tooltip`: to display a [Tooltip](/docs/components/tooltip) around the Slider thumbs with the current value.14- `disabled`: to disable the Slider.15- `inverted`: to visually invert the Slider.1617## Usage1819```vue20<USlider21<!-- props here -->22/>23```24